首页 > 代码库 > 左侧图片 右侧块的实现方法---解决3像素bug的一种解决方案,不用浮动用绝对定位和margin-left
左侧图片 右侧块的实现方法---解决3像素bug的一种解决方案,不用浮动用绝对定位和margin-left
google的实现方式是:
<div class="mw">
<a href="http://www.mamicode.com/" id="mlogo"> </a>
<div id="tsfi" style="zoom:1"></div>
</div>
图片可以作为a标签的背景或者嵌套子a标签里面,为a标签设置绝对定位,右面搜索框为正常块,为右面的搜索框设置margin-left即可
具体如下,也可直接去看google搜索页
.mw{
max-width:100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi)
background-image: url(/images/logo_mobile_srp_highres_3.png);
}
#mlogo {
background: url(/images/logo_mobile_srp_3.png) no-repeat;
background-size: 75px 26px;
color: transparent;
width: 75px;
height: 26px;
left: 9px;
position: absolute;
text-align: center;
top: 8px;
}
#tsfi {
margin-left: 102px;
-webkit-transition: all .15s;
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。