我已经尝试添加CSS了,但我无法让我的标签栏以博主为中心 - 任何建议?我尝试添加:
.PageList {
text-align:center !important;
}
.PageList li {
display:inline !important;
float:none !important;
}
但这似乎没有做任何事情。
答案 0 :(得分:0)
.PageList{
width:1000px; //assuming the width to be 1000px
margin:0 auto;
}
添加到您的CSS中的css
代码将为您提供所需的效果。
这可以是另一个替代css
代码
body{
width:100%;
}
.PageList{
width:200px; //your width
margin:0 auto;
}
答案 1 :(得分:0)
这应该可以胜任。
.PageList {
padding-left: 0;
margin: 20px 0;
text-align: center;
list-style: none;
}
.PageList li {
display: inline;
width:100px;
background:#ddd;
padding:10px;
color:#fff;
}
答案 2 :(得分:-1)
使用固定宽度&定位它绝对试试这个
.pagelist{
position: absolute;
top: 0;
left: 50%;
width: 100px;
height: 100px;
}