我在说的这个网站是
is currently live.它对我来说很好.只有一个错误让我疯狂:
在标准的Android浏览器(在4.1.2测试,LG),标志被拉伸和调整大小是非常糟糕的.您可以在下面看到一个演示.
用于定位和尺寸标识的CSS非常简单,使用位置:绝对位置:固定元素:
<div class="fixed"> <div id="logo"> <a href="logo-link"> <img src="logo.jpg" height="55" width="34"> </a> </div> </div>
CSS:
* {Box-sizing: border-Box} /* bootstrap system */ .fixed { position: absolute; top: 0; left: 0; right: auto; bottom: auto; height: 85px; } .logo { width: 85px; position: absolute; top: 0; left: 0; right: auto; bottom: auto; } img { margin: 20px 27px; max-width: 40px; height: auto; display: inline-block; }