HTML/CSS/Basic Attributes/clear

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

"clear" create space around the area of a "br" element

    
<HTML>
<head><Title>Example For clear</Title></head>
<BODY>
<img src="http://www.wbex.ru/style/logo.png" 
     alt="This is a float-left image" 
     width="100"
     height="100"
     style="float:right">
     BR Clear
<br clear="left">
<img src="http://www.wbex.ru/style/logo.png" 
     alt="This is a float-left image" 
     width="200" 
     height="200"
     style="float:left">
Here is the br element
<img src="http://www.wbex.ru/style/logo.png" 
     alt="This is a float-left image"
     width="300" 
     height="300" 
     style="float:left">
</BODY>
</HTML>