HTML/CSS/Style Basics/CSS Basics

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

Using Whitespace in CSS

   <source lang="html4strict">

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

</source>