我一直在使网站具有响应性,甚至使用 protoFluid 之类的工具来查看它,就好像它在 iPhone 上一样。但是,我使用我的 iPhone 并且有很多问题。这些按钮似乎不想改变它们的宽度,即使它们是基于百分比的。它们向右溢出,并在右侧留下一个黑色空间。
.container .name .social div{
width: 80px;
display: inline-block;
}
.container .name .social img{
width: 100px;
}
.social {
position: absolute;
display: inline;
width: 425px;
left: 0;
margin-left: 10px;
}
@media only screen and (max-width: 600px) {
.social {
padding: 0;
width: 424px;
position: relative;
display: block;
margin: 0 auto
}
.name .social div {
width: 16.6666667%;
}
.social img {
width: 125%;
/*width: 100px*/
}
}
@media only screen and (max-width: 450px) {
.container .name .social div {
width: 13.6667%;
}
.container .name .social img {
width: 125%;
}
}