好吧,怪我是个细节控
先不说行内元素里面嵌套块元素的问题,menu里面的灰色横线不是固定长度的啊啊啊啊?
先不说行内元素里面嵌套块元素的问题,menu里面的灰色横线不是固定长度的啊啊啊啊?
2016-07-17
.menu-item{
float: left;
width: 520px;
height: 40px;
position: relative;
}
.menu-item .title{
position: absolute;
left: 0;
padding-right: 10px;
background: #fff;
z-index: 10;
}
.menu-item .line{
border-top:1px solid #E2E1E1 ;
width: 100%;
position: absolute;
top: 12px;
z-index: 1;
}
.menu-item .price{
position: absolute;
right: 0;
height: 40px;
width: 98px;
text-align: center;
color: #555555;font-size: 16px;
background: #fff;
z-index: 10;
}
举报