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>

  • 相关阅读:
    'telnet' 不是内部或外部命令,也不是可运行的程序 或批处理文件。
    Linux学习_009_VMware12.0 Pro 中安装 CentOS 6.8_超详解 + 高清大图
    Linux学习_008_Linux下的JDK和OpenJDK有什么具体的区别
    实战CentOS系统部署Hadoop集群服务
    开源多线程性能测试工具-sysbench
    Hadoop集群中Hbase的介绍、安装、使用
    Docker基础技术:Linux Namespace(上)
    带你走进rsync的世界
    5分钟教你Windows 10中将“运行”固定到开始菜单
    使用 Github Pages 发布你的项目文档
  • 原文地址:https://www.cnblogs.com/xiaohuasan/p/12549252.html
Copyright © 2011-2022 走看看