1
如何使字體大小響應與Twitter引導?響應式字體大小與Twitter引導
我寫了一個完全響應寬度的代碼,但字體沒有響應。正如你在下面的屏幕截圖(Android默認瀏覽器)中看到的,字體大小和文本框也非常小。如何解決這個問題?
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
你用'普通'瀏覽器試過了嗎?像mozilla或chrome –
我需要使其在默認瀏覽器中工作。 –
無法在每個瀏覽器的每個版本中都能使用某些功能。你需要忘記一些瀏覽器,也許你可以嘗試使用javascript來調整字體大小,或嘗試使用'em'。 –