HTML/CSS/Style Basics/CSS Basics

Материал из Web эксперт
Версия от 08:17, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Using Whitespace in CSS

 
all the following statements are correct and produce the exact same result: 
body{font-size:20px;line-height:150%;} 
body { font-size:20px; line-height:150%; } 
body { font-size : 20px ; line-height : 150% ; } 
body 
{ 
font-size: 20px; 
line-height: 150%; 
}