Block of HTML elements

Packet Label

label description
div Area definition document, a block-level element (block-level)
span For combining the document row elements, inline elements (inline)

Block elements automatically fold lines added at the browser display

Examples of the use of div layout

<!DOCTYPE html>
<html>
<body>

<div id="container" style="width:800px">

<div id="header" style="background-color:#FFA500;">
<h1 style="margin-bottom:0;">Main Title of Web Page</h1></div>

<div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;">
<b>Menu</b><br>
HTML<br>
CSS<br>
JavaScript</div>

<div id="content" style="background-color:#EEEEEE;height:200px;width:700px;float:left;">
Content goes here</div>

<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">
Copyright © w3cschool.cn</div>

</div>
 
</body>
</html>
Published 25 original articles · won praise 19 · views 668

Guess you like

Origin blog.csdn.net/devin_xin/article/details/105011147