HTML之前端操作div标签布局


事例图片:

 

 

div元素是用于分组HTML元素的块级元素

 

上图代码示例如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<div class="container" style="width: 500px">
    <div id="header" style="background-color: aqua">
        <h2 style="margin-bottom: 0;">王浩</h2>
    </div>

    <div class="menu" style="background-color: cornflowerblue;height: 200px;width: 100px;float:left">
        <b>菜单</b><br>
        <p>HTML</p>
        <P>CSS</P>
        <P>Javascript</P>
    </div>

    <div class="content" style="background-color: yellow;height: 200px;width: 400px;float: left">
        内容部分
    </div>

    <div class="footer" style="background-color: cadetblue;clear: both;text-align: center">
        版权@wanghaohao.com
    </div>
    
</div>

</body>
</html>

 

 
 
 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM