CSS 實現一個自適應的正方形

 

傳統方法正方形用固定的形式寫 直接長=寬寫固定的值以下html

  1.  
    .box{
  2.  
    width: 200px;
  3.  
    height: 200px;
  4.  
    background: pink;
  5.  
    color: #666;
  6.  
    }

可是不少狀況下,在移動端的設計裏,圖片的寬度隨着不一樣的移動設備進行改變的,這個時候就須要用到自適應的正方形的實現。post

下面介紹兩種比較簡單的實現方法:ui

方法一:CSS3 vw 單位,vw是相對於視口的寬度。視口被均分爲100單位的vw。1vw = 1% viewport widthspa

  1.  
    .box{
  2.  
    width: 20%;//width:20vw也能夠
  3.  
    height: 20vw;
  4.  
    background: pink;
  5.  
    }

方法二:設置盒子的padding-bottom樣式,讓盒子的padding-bottom和盒子的寬度同樣,同時設置heigh = 0px;設計

  1.  
    <!DOCTYPE html>
  2.  
    <html>
  3.  
    <head>
  4.  
    <meta charset="utf-8">
  5.  
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.  
    <title></title>
  7.  
    <link rel="stylesheet" href="">
  8.  
    </head>
  9.  
    <style>
  10.  
    *{
  11.  
    margin: 0;
  12.  
    padding: 0;
  13.  
    }
  14.  
    .box{
  15.  
    width: 20%;
  16.  
    /* 設置height爲0 ,避免盒子被內容撐開多餘的高度 */
  17.  
    height: 0px;
  18.  
    /* 把盒子的高撐開,
  19.  
    和width設置一樣的固定的寬度或者百分比 ,
  20.  
    百分比相對的是父元素盒子的寬度 */
  21.  
    padding-bottom: 20%;
  22.  
    background: pink;
  23.  
    color: #666;
  24.  
    }
  25.  
    </style>
  26.  
    <body>
  27.  
    <div class="box">
  28.  
    <p>&nbsp;這是一個自適應的正方形</p>
  29.  
    </div>
  30.  
    </body>
  31.  
    </html>

要注意的是,若是這裏沒有寫height:0px;當盒子裏面有內容的時候,盒子會被內容撐大3d

      

若是把padding-bottom改爲padding-top會出現什麼現象?code

       

能夠看出來在正方形中有內容的時候,內容會現實在正方形外面,這是由於默認文字是從左到右,從上到下的排列,因此paddin-top之後文字會在正方形外面,因此這裏的paddin-bottom和padding-top並不能混用htm

 

另外由於盒子設置了heigh:0px;致使該元素裏面再有子元素的時候,就沒法正常設置高度。因此咱們須要用到position: absolute;使當前內容脫離文檔流,那麼內容的高度百分比參照的就是父級的寬度blog

  1.  
    *{
  2.  
    margin: 0;
  3.  
    padding: 0;
  4.  
    }
  5.  
    .box{
  6.  
    width: 20%;
  7.  
    /* 設置height爲0 ,避免盒子被內容撐開多餘的高度 */
  8.  
    height: 0px;
  9.  
    /* 把盒子的高撐開,
  10.  
    和width設置一樣的固定的寬度或者百分比 ,
  11.  
    百分比相對的是父元素盒子的寬度 */
  12.  
    padding-bottom: 20%;
  13.  
    background: pink;
  14.  
    color: #666;
  15.  
    position: relative;
  16.  
    overflow: hidden;
  17.  
    }
  18.  
    p{
  19.  
    position: absolute;
  20.  
    width: 100%;
  21.  
    height: 100%;
  22.  
    background: yellow;
  23.  
    }

這樣子盒子裏面的內容就把正方形佔滿啦圖片

相關文章
相關標籤/搜索