我的宽度有问题:20%;被我的最小宽度覆盖:30px;(参见css框中的第22和23行:http: //jsfiddle.net/dLmnX/)
我也是第一次使用纵横比:我从http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio中挑选并切碎了代码。
代码的纵横比部分:
#aspect {
padding-top: 120%; /* aspect ratio */
}
似乎工作正常,它只是这个 div 中的宽度:
#shuffle1 {
display: inline-block;
margin: 0px auto;
position: relative;
width: 20%;
min-width: 30px;
}
任何帮助都会很棒!谢谢你。