我已經嘗試添加CSS,但我無法讓我的標籤欄集中在博主 - 任何建議?我試過加入:爲什麼我無法居中我的選項卡?
.PageList {
text-align:center !important;
}
.PageList li {
display:inline !important;
float:none !important;
}
但是這似乎沒有做任何事情。
我已經嘗試添加CSS,但我無法讓我的標籤欄集中在博主 - 任何建議?我試過加入:爲什麼我無法居中我的選項卡?
.PageList {
text-align:center !important;
}
.PageList li {
display:inline !important;
float:none !important;
}
但是這似乎沒有做任何事情。
.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;
}
這些都沒有爲我的代碼做任何事情。它並沒有改變這一切。 – user3184598
這應該做的工作。
.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;
}
先給了'.PageList'一些** **固定'width'和'保證金:0 auto'。 – Vucko
看起來好吧http://jsfiddle.net/U74cx/ 它也沒有!重要的工作,沒有額外的「float:none」 – Naele