設置等寬高容器,具體大小不定

相等寬高容器,具體大小不肯定,可隨着父級大小變化,或屏幕大小變化
裏面圖片自動撐開容器大小html

//html
<div class="img_box">
  <img src="img/1.jpg">
</div>

//js
.img_box{
    width:100%;
    height:0;
    padding-top:100%;// height爲0,padding-top的100%是依據width的
}
img{
    width:100%;
    height:100%;
}
相關文章
相關標籤/搜索