【转载】图片 CSS:怎样才能 “响应式 + 固定宽高比例”?

本身根据项目须要,把代码摘了出来css

<div class="img-box"></div>ruby

.img-box{
height:0;
padding-bottom:100%;
overflow:hidden;
width:100%;//能够是个固定值 项目里用的百分比
background-size:100% 100%;
background-position:center center;
background-repeat:no-repeat;
background-image:url(...../...png); } 

最终效果就是等比的四四方方的图标.....url

 

参考原文:https://ruby-china.org/topics/17011blog

相关文章
相关标签/搜索