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