CSS 調適型配置,css調適型配置

來源:互聯網
上載者:User

CSS 調適型配置,css調適型配置
前言

本篇文章將介頁面配置中的調適型配置,常見的調適型配置有以下2種:左列固定右列自適應、左右兩列固定中間自適應。

 

1. 左列固定右列調適型配置方案

說明:左列固定右列自適應,也可以為右列固定左列自適應,常見於中台管理介面、移動端Web的列表展示等等。

<div class="container">    <div class="left">固定寬度</div>    <div class="right">自適應</div></div>

 

1.1 子項目 float:left

說明:左邊的固定列設定為 float:left,右邊的自適應列設定為 float:none。

CSS

* { margin: 0;padding: 0 }.container {    position: absolute;    width: 100%;    height: 100%;}.left {    float: left;    width: 200px;    height: 100%;    background-color: #72e4a0;}.right {    float: none;    width: 100%;    height: 100%;    background-color: #9dc3e6;} 

 

1.2 子項目 width:calc()

說明:自適應列的width根據calc()自動計算,如:父容器width - 固定列width。

瀏覽器支援:IE 9+。

CSS

* { margin: 0;padding: 0 }.container {    position: absolute;    width: 100%;    height: 100%;}.left {    float: left;    width: 200px;    height: 100%;    background-color: #72e4a0;}.right {    float: left;    width: calc(100% - 200px);    height: 100%;    background-color: #9dc3e6;}

  

 

1.3 父元素 display: table

說明:父容器採用display: table和table-layout: fixed時,子容器會平分父容器的寬度,這時候固定某列的width,其餘的列會繼續平分剩下的寬度。

瀏覽器支援:IE 8+。

CSS

* { margin: 0;padding: 0 }.container {    position: absolute;    display: table;    width: 100%;    height: 100%;    table-layout: fixed;}.left {    display: table-cell;    width: 200px;    height: 100%;    background-color: #72e4a0;}.right {    display: table-cell;    width: 100%;    height: 100%;    background-color: #9dc3e6;}

 

1.4 父元素 display: flex

瀏覽器支援:IE 10+。

CSS

* { margin: 0;padding: 0 }.container {    position: absolute;    display: flex;    width: 100%;    height: 100%;}.left {    width: 200px;    height: 100%;    background-color: #72e4a0;}.right {    flex: 1;    height: 100%;    background-color: #9dc3e6;}

 

2. 左右2列固定,中間自適應
<div class="container">    <div class="left">左側定寬</div>    <div class="mid">中間自適應</div>    <div class="right">右側定寬</div></div>

 

2.1 子項目 width:calc()

說明:自適應列的width根據calc()自動計算,如:父容器width - 固定列width。

瀏覽器支援:IE 9+。

CSS

* { margin: 0;padding: 0 }.container {    position: absolute;    width: 100%;    height: 100%;}.left {    float: left;    width: 100px;    height: 100%;    background-color: #72e4a0;}.mid {    float: left;    width: calc(100% - 100px - 100px);    height: 100%;    background-color: #9dc3e6;}.right {    float: left;    width: 100px;    height: 100%;    background-color: #4eb3b9;}

 

 

2.2 父元素 display: flex

說明:在父元素設定display為flex時,其中一列的flex為1,其餘列都設定固定width。

瀏覽器支援:IE 10+。

CSS

* { margin: 0;padding: 0 }.container {    position: absolute;    display: flex;    width: 100%;    height: 100%;}.left {    float: left;    width: 100px;    height: 100%;    background-color: #72e4a0;}.mid {    float: left;    height: 100%;    flex: 1;    background-color: #9dc3e6;}.right {    float: left;    width: 100px;    height: 100%;    background-color: #4eb3b9;}

  

 

End Web開發之路系列文章 菜單載入中...

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.