为什么没居中?
为什么 设置后wrap-center中left:-50%;后文本却向左偏了一大截,并没有居中
为什么 设置后wrap-center中left:-50%;后文本却向左偏了一大截,并没有居中
2016-12-11
<style>
.container{
float:left;
position:relative;
left:50%}
.container ul{
list-style:none;
margin:0;
padding:0;
position:relative;
left:-50%;
}
.container li{float:left;display:inline;margin-right:8px;}
/*下面是代码任务区*/
.warp{float:left;
position:relative;
left:50%;
}
.wrap-center{
background:#ccc;
position:relative;
left:-50%;
}
这是我的代码,求大神指点迷津
举报