所以,我正在使用 Twitter Bootstrap 开发我的第一个网站。效果很好。现在我正试图让网站响应。当我把屏幕变小(太模拟手机屏幕)时,标志变得越来越大,直到它变得最小的页面尺寸(我猜?),然后它跳得太小并停留在那里。
有谁知道如何解决这个问题?我也希望它保持相同的大小...... HTML:
<div id="header" class="container">
<img id="logo" class="span2 offset1" src="img/logo.png" title="Hostellerie De Hamert">
<h1 id="deHamert" class="text-center span6">Hostellerie De Hamert</h1>
</div>
CSS:#logo{
background-color: transparent;
max-width: none;
}
当然,还集成了引导程序。