盒子模型和边框设置

 

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{
            padding:0;
            margin:0;
        }
        .box{
            width:300px;
            height:200px;
            padding:50px;
            border:10px solid red;
            margin:20px;
        }
        .box2{
            width: 300px;
            height: 200px;
            padding:30px;
            border:30px solid #eee;
            margin:20px;
        }
        .box3{
            width: 300px;
            height: 300px;
            padding:50px;
            border:20px solid lightblue;
            margin:40px;
            background-color: yellowgreen;
            /*background-image: url(images/watermelon.jpg);*/
            background-image: url(images/star.gif);
        }

    </style>
</head>
<body>
    <div class="box">盒子</div>
    <div class="box2">2号盒子</div>
    <div class="box3">3号</div>

</body>
</html>
复制代码

 

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{
            padding:0;
            margin:0;
        }
        
        .box{
            width:0px;
            height:0;
            border:60px solid #fff;
            border-top-color:red;
            border-bottom:none;
            /*border-right-color:green;
            border-bottom-color:orange;*/
            margin:50px;
        }
        .box2{
            width:0px;
            height:0px;
            border-top:60px solid red;
            border-right :60px solid transparent;
            border-bottom :60px solid transparent;
            border-left :60px solid transparent;
            /*border-right-color:green;
            border-bottom-color:orange;*/
            margin:50px;
        }

    </style>
</head>
<body>
    <div class="box"></div>
    <div class="box2"></div>

</body>
</html>
复制代码

 

下面两个距离不一样,就算因为一个 float:left;

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
        /*清除默认样式*/
        *{
            padding:0;
            margin:0;
        }
        ul,ol{
            list-style: none;
        }
        a{
            text-decoration: none;
            color:#333;
        }
        .box1{
            width: 200px;
            height: 200px;
            background-color: lightblue;
            
        }
        .box1{
            margin-bottom: 130px;
        }
        .box2{
            margin-top: 80px;
            float:left;
            
        }


    </style>
</head>
<body>
    <div class="box1">1</div>
    <div class="box1 box2 ">2</div>

    

</body>
</html>
复制代码

 

 

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
        /*清除默认样式*/
        *{
            padding:0;
            margin:0;
        }
        ul,ol{
            list-style: none;
        }
        a{
            text-decoration: none;
            color:#333;
        }
        .box1{
            width: 200px;
            height: 200px;
            background-color: lightblue;
            
        }
        .box1{
            margin-bottom: 130px;
        }
        .box2{
            margin-top: 80px;

            
        }


    </style>
</head>
<body>
    <div class="box1">1</div>
    <div class="box1 box2 ">2</div>

    

</body>
</html>
复制代码

 

posted @   剧里局外  阅读(1162)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示