如果三个块元素该怎么并列一行?还有块元素如何居中?

来源:13-4 起飞咯 - 浮动模型

稽小寞

2018-05-15 16:27

如题:如果三个块元素该怎么并列一行?还有块元素如何居中?

写回答 关注

3回答

  • 慕丝3126394
    2018-06-12 23:36:57

    <!DOCTYPE html>

    <html>   

    <head>       

        <meta charset="UTF-8">      

        <title></title>    

        <style>          

            father{            

                width: 500px;             

                height: 500px;            

                background: #000;         

            }                      

            .son1{             

                height: 100px;            

                background: green;        

            }                      

            .son2{             

                width:250px;

                height: 200px;            

                background: yellow;

                margin-left:auto;

                margin-right:auto;

            }                      

            .son3{             

                height: 100px;            

                background: red;          

            }

            .son2 h1{text-align:center;

                     line-height:200px;

                     margin:0;

            }

                     


        </style> 

    </head>  

     

    <body>       

        <div class="father">        

            <div class="son1"></div>          

            <div class="son2">              

            <h1>我要居中</h1>   

            </div>           

            <div class="son3"></div>      

        </div>   

    </body>

    </html>   


  • imooc蜀郡
    2018-05-18 16:38:27

    div{

        width:100px;

        height:100px;

        border:2px red solid;

        margin:120px;

      }

      #div1{float:left;}

      #div2{float:left;}

      #div3{float:right;}

     有个笨方法

  • 慕婉清2379718
    2018-05-15 16:38:27
    如下代码可以实现三个 div 元素一行显示。
    div{
        width:200px;
        height:200px;
        border:2px red solid;    float:left;}
    <div id="div1"></div>
    <div id="div2"></div>
    <div id="div3"></div>


    稽小寞

    块元素居中该怎么做?

    2018-05-15 16:48:40

    共 1 条回复 >

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225301 学习 · 18230 问题

查看课程

相似问题