HTML/CSS/Style Basics/CSS Basics — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:17, 26 мая 2010
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%;
}