.class: Belirli bir sınıfa stil atar. #id: Belirli bir id'ye stil atar. element: Belirli bir HTML elementine stil atar. *: Tüm elementlere stil atar.
.baslik {
font-size: 12px;
color: blue;
}
#unique-element {
font-size: 20px;
color: red;
}
div {
font-size: 60px;
color:green;
}
Gayet net ve açıklayıcı olmuş.
2024-02-18 15:24:27