HTML/CSS/Style Basics/CSS Basics

Материал из Web эксперт
Перейти к: навигация, поиск

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%; 
}