• 4、盒子模型和margin、padding


    位置属性:代码:

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title></title>
        <style type="text/css">
            div {
                height:300px;
                width:300px;
            }
                div.div1 {
                    background-color:red;
                    top:100px;
                    left:100px;
                    position:absolute;
                    z-index:3;
                }
                div.div2 {
                    background-color:green;
                    position:absolute;
                   top:130px;
                   left:130px;
                   z-index:2;
                }
                div.div3 {
                background-color:yellow;
                top:160px;
                left:160px;
                position:absolute;
                z-index:1;
                }
    
                div.div4 {
                    right:0px;
                    bottom:0px;
                    background-color:black;
                    position:fixed;
                }
        </style>
    </head>
    <body>
    
        <div class="div4">
    
        </div>
            <div class="div1">
    
            </div>
        <div class="div2">
    
        </div>
        <div class="div3">
    
        </div>
        
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
        <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    </body>
    </html>

    代码:margin属性

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title></title>
        <style type="text/css">
            * {
                margin:0px;
            }
    
            div {
                height:300px;
                width:300px;
            }
                div.div1 {
                    background-color:red;
                }
                div.div2 {
                    background-color:green;
                    margin-top:20px;
                    margin-left:40px;
                  
                }
                div.div3 {
                    background-color:yellow;
                }
                div.div2 p {
                    padding-top:100px;
                    padding-left:40px;
                }
        </style>
    </head>
    <body>
            <div class="div1">
    
            </div>
    
        <div class="div2">
            <p>我是div里的p标签</p>
        </div>
    
        <div class="div3">
    
        </div>
    </body>
    </html>
  • 相关阅读:
    Python语言简介以及特点
    计算机组成原理简述
    Python中的dict字典的用法
    Python3中IO文件操作的常见用法
    Python中的装饰器的使用及固定模式
    Python中的解决中文字符编码的问题
    Python中常见字符串去除空格的方法总结
    Python中print函数中中逗号和加号的区别
    当引用了Properties.Settings后,如果执行的时候,出现"配置系统无法初始化" 或者 某某节点不正确
    修改IP的方法(C#)
  • 原文地址:https://www.cnblogs.com/wangqiangya/p/13125507.html
Copyright © 2020-2023  润新知