欧美亚洲中文,在线国自产视频,欧洲一区在线观看视频,亚洲综合中文字幕在线观看

      1. <dfn id="rfwes"></dfn>
          <object id="rfwes"></object>
        1. 站長(zhǎng)資訊網(wǎng)
          最全最豐富的資訊網(wǎng)站

          css怎樣實(shí)現(xiàn)DIV高度自適應(yīng)

          css怎樣實(shí)現(xiàn)DIV高度自適應(yīng)

          可以添加表格特性。

          (推薦教程:CSS教程)

          父級(jí)元素添加屬性 display: table;

          子一級(jí)元素添加屬性 display: table-cell;

          代碼:

          <div class="div-row">         <style type="text/css">             .div-row {                 width: 400px;                 border: 1px solid #23527C;                 display: table;             }             .div-col {                 display: table-cell;             }         </style>               <div class="div-col" style="background-color: #28A4C9;">                 <p><span>內(nèi)容1</span></p>             </div>             <div class="div-col"  style="background-color: #31B0D5;">                 <p><span>內(nèi)容1</span></p>                 <p><span>內(nèi)容2</span></p>             </div>             <div class="div-col"  style="background-color: #269ABC;">                 <p><span>內(nèi)容1</span></p>                 <p><span>內(nèi)容2</span></p>                 <p><span>內(nèi)容3</span></p>             </div>             <div  class="div-col" style="background-color: #5BC0DE;">                 <p><span>內(nèi)容1</span></p>                 <p><span>內(nèi)容2</span></p>                 <p><span>內(nèi)容3</span></p>                 <p><span>內(nèi)容4</span></p>                 <p><span>...</span></p>             </div>         </div>

          結(jié)果:

          css怎樣實(shí)現(xiàn)DIV高度自適應(yīng)

          贊(0)
          分享到: 更多 (0)
          網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)