前端

HTML基础知识之DIV

2019-03-07  本文已影响4人  暖A暖

一、HTML 块元素

二、HTML 内联元素

三、HTML <div> 元素

四、div的使用

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>

</head>
<style>
    .all{
        width:500px;
        height:500px;
        margin:0 auto;
        background-color:#000;
        }
    .one{
        height:100px;
        background-color:#89E1BF;
        }
    .two{
        height:100px;
        background-color:#DEE099;
        }
    .three{
        height:100px;
        background-color:#D7A1CE;
        }
        
</style>

<body>
    <!--父div-->
    <div class="all">
        <!--子div-->
        <div class="one">
        </div>
        <!--子div-->
        <div class="two">
        </div>
        <!--子div-->
        <div class="three">
        </div>
    </div>
</body>
</html>

演示效果如图所示:

1.png
上一篇下一篇

猜你喜欢

热点阅读