在作頁面時,咱們每每會碰到頁面佈局相關的內容,面試時也常常會被問到,那麼今天我就來總結一下關於頁面佈局的內容。
假設高度已知,請寫出三欄佈局,其中左右寬度均爲300px,中間自適應。面試
看了上面的題目,有經驗的人也許會以爲很簡單,仔細想一想,若是咱們來寫,能寫出幾種方案呢?通常都會想到兩種吧,float和position定位,其實除了這兩種外,還有3種能夠寫,下面我就來一一介紹一下:瀏覽器
<section class='layout float'> <style> .layout.float .left-right-center{ height: 100px; } .layout.float .left{ float: left; width: 300px; background-color: red; } .layout.float .right{ float: right; width: 300px; background-color: blue; } .layout.float .center{ background-color: yellow; } </style> <article class="left-right-center"> <div class="left"></div> <div class="right"></div> <div class="center">我是中間的自適應元素--浮動</div> </article> </section>
<section class="layout absolute"> <style> .layout.absolute .left-center-right div{ position: absolute; height: 100px; } .layout.absolute .left{ left: 0; width: 300px; background-color: red; } .layout.absolute .center{ left: 300px; right: 300px; background-color: yellow; } .layout.absolute .right{ right: 0; width: 300px; background-color: blue; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> 我是中間的自適應元素--絕對定位 </div> <div class="right"></div> </article> </section>
<section class="layout flex"> <style> .layout.flex .left-center-right{ display: flex; height: 100px; } .layout.flex .left{ width: 300px; background-color: red; } .layout.flex .center{ flex: 1; background-color: yellow; } .layout.flex .right{ width: 300px; background-color: blue; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> 我是中間的自適應元素--flex佈局 </div> <div class="right"></div> </article> </section>
<section class="layout table"> <style> .layout.table .left-center-right{ display: table; height: 100px; width: 100%; } .layout.table .left{ display: table-cell; width: 300px; background-color: red; } .layout.table .center{ display: table-cell; background-color: yellow; } .layout.table .right{ display: table-cell; width: 300px; background-color: blue; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> 我是中間的自適應元素--table </div> <div class="right"></div> </article> </section>
<section class="layout grid"> <style> .layout.grid .left-center-right{ display: grid; width: 100%; grid-template-rows: 100px;/*每一格都是100px高*/ grid-template-columns: 300px auto 300px;/*左右兩格都是300px,中間是自適應*/ } .layout.grid .left{ background-color: red; } .layout.grid .center{ background-color: yellow; } .layout.grid .right{ background-color: blue; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> 我是中間的自適應元素--grid佈局 </div> <div class="right"></div> </article> </section>