[CSS]三层嵌套的滑动门
原理:
最外层放水平平铺的背景,第二层放左边,第三层放右边,注意这个做法背景图不能透明
结构:
<div class="module-title">
<span class="left">
<span class="right"></span>
</span>
</div>
样式:
.module-title {
height:33px;
background: url(../images/more-title.png) 0 -33px repeat-x;
text-indent: 0;
}
.module-title .left{
display:inline-block;
height: 33px;
line-height: 34px;
padding-left:30px;
background: url(../images/more-title.png) 0 0 no-repeat;
}
.module-title .right{
display:inline-block;
min-width:4em;
height: 33px;
padding-right:48px;
line-height: 34px;
background: url(../images/more-title.png) right -66px no-repeat;
text-align:center;
}
背景图:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。