美文网首页
HTML + CSS 对齐

HTML + CSS 对齐

作者: tingshuo123 | 来源:发表于2018-09-10 23:17 被阅读23次

    居中magin: 0px auto

    <!DOCTYPE html>
    <html>
    <head>
        <title>对齐</title>
        <style type="text/css">
    
            * {
                margin: 0px;
            }
    
            .div {
                width: 70%;
                height: 1000px;
                background-color: red;
    
                /*使div居中对齐*/
                /*margin: 0px auto;*/
    
                /*使用绝对定位像左向右对齐*/
                /*position: absolute;*/
                /*右对齐*/
                /*right: 0px;*/
                /*左对齐*/
                /*left: 0px;*/
    
                /*使用浮动对齐*/
                /*左对齐*/
                /*float: left;*/
                /*右对齐*/
                /*float: right;*/
            }
    
    
        </style>
    </head>
    <body>
        <div class="div">
            
        </div>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:HTML + CSS 对齐

          本文链接:https://www.haomeiwen.com/subject/ikzegftx.html