我是twitter bootstrap的新手。我在<tr>
class="hidden-phone"
但我想调整显示的文字大小以适应屏幕
如何在手机屏幕上调整文字大小如下?
<span>test test test test test</span>
答案 0 :(得分:6)
这是你在twitter bootstrap中使用移动视口的方式(或任何其他解决方案)
@media (max-width: 480px) {
body {
font-size: 11px;
}
.hidden-phone {
display: block;
}
}