zoukankan      html  css  js  c++  java
  • 盒子模型和边框设置

    <!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>

  • 相关阅读:
    openstack官方指导书
    获取当前日期时间并格式化
    获取url中的参数
    页签切换
    app开屏广告
    开发接口文档--本接口文档是读取控制器方法上的注释自动生成的
    bzoj 1491: [NOI2007]社交网络
    bzoj 3996: [TJOI2015]线性代数
    5.6水题合集
    bzoj 3528: [Zjoi2014]星系调查
  • 原文地址:https://www.cnblogs.com/xiaohuasan/p/12549252.html
Copyright © 2011-2022 走看看