我在使用移动网站时遇到问题。客户想要底部的这些基于文本的按钮/链接,所以我添加了它们,但我对使用大小百分比有点生疏。
我需要使看起来像这样并保持在同一行,但要相应地拉伸,这样文本就不会太小而无法阅读。
我可以让它在三星或 Nexus 上看起来和工作正常,但使用 iPhone 总是会导致第三个文本元素移动到下一行而不是缩小。
手机网站:http ://teetimelawn.com/m/html/index.html
编辑(显示我的问题的 iphone 模拟器的截图):
http://i.imgur.com/R0RE0i5.png
它通常在 android 手机上看起来像一个联系: http ://i.imgur.com/tkpLv4V.jpg
HTML:
<section id="footer">
<div id="footer">
<div id="full"><a href="http://www.teetimelawncare.com">Full Site</a></div>
<div id="foot"><a href="tel:18156096969">Call Us</a></div>
<div id="footer-right">Tee Time Lawn Care © </div>
</div>
</section> <!-- #footer -->
CSS:
#footer {
color: #fff;
font-size: 100%;
line-height: 45px;
font-weight: bold;
text-transform: uppercase;
background:#00CC00;
line-height: 18px;
text-align: center;
height: 30px;
}
#foot {
font-size: 100%;
background-color: purple;
display: inline-block;
padding-left: 10%;
padding-right: 10%;
height: 30px;
}
#full {
font-size: 100%;
float: left;
margin-left: 20px;
}
#footer-right {
font-size: 100%;
float: right;
margin-right: 20px;
}