:before
以下代码将在伪选择器和伪选择器中呈现带有背景图像的按钮(链接),:after
以获得灵活的跨浏览结果。问题是,只有 chrome 没有得到它(safari,我不知道)。
HTML:
<div class="btn-container align-right more-info-btn">
<a class="btn" href="#">Super Button<i class="arrow-after-right"></i>
</a>
</div>
CSS:
.btn-container .btn {
display: inline-block;
text-decoration: none;
height: 24px;
background: transparent url('http://img842.imageshack.us/img842/5052/kdti.png');
padding: 0 6px;
font-size: 11px;
line-height: 21px;
font-weight: bold;
color: red;
font-family: Helvetica, Arial, FreeSans, Verdana, Tahoma, 'Lucida Sans', 'Lucida Sans Unicode', 'Luxi Sans', sans-serif;
}
.btn-container .btn:before {
content:'';
display: inline-block;
background: transparent url('http://img600.imageshack.us/img600/3825/6ppo.png') no-repeat;
width: 4px;
height: 100%;
margin-left: -10px;
float: left;
}
.btn-container .btn:after {
content:'';
display: inline-block;
background: transparent url('http://img834.imageshack.us/img834/4803/b5zs.png') no-repeat;
width: 4px;
height: 100%;
margin-right: -10px;
float: right;
}
谷歌浏览器中的按钮:
所有其他浏览器中的按钮:
jsFiddle:
我已经尝试过不同的浮动/清除组合,但到目前为止还没有成功。