码迷,mamicode.com
首页 > 其他好文 > 详细

盒子模型

时间:2018-12-20 23:59:14      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:body   padding   水平   img   dia   size   alt   pre   方式   

 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
    <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
    <title>盒子模型</title>
    
    <style type="text/css" media="screen" id="test">
        div{
            width:300px;
            height:300px;
            border: 1px solid #999;
            border-top-color:red;
            border-bottom-color:yellow;



            /*水平对齐方式*/
            text-align:center;



            /*字体大小*/
            font-size:50px;



            /*内边距的大小*/
            padding-top: 100px;


            /*外边距的大小*/
            margin-top:200px;
        }
        .test1{
            background-color:red;

            /*浮动*/
            float:left;
        }
        .test2{
            font-style:italic;
            float:left;
        }
        .test3{
            background-color: rgb(255,0,0);
            font-weight:800;
            float:right;
        }
    </style>
</head>
<body>
    <div id="test" class="test1">
        这是div1
    </div>
    <div id="test" class="test2">
        这是div2
    </div>
    <div id="testf" class="test3">
        这是div3
    </div>
</body>
</html>

技术分享图片

 

盒子模型

标签:body   padding   水平   img   dia   size   alt   pre   方式   

原文地址:https://www.cnblogs.com/chenchen-12/p/10153058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!