HTML/CSS/Basic Attributes/clear

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

"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>