2010-07-10 156 views
0

嘿傢伙,我有一個標準的導航欄與無序列表和使用精靈。我也使用jQuery來渲染一些動畫。一切正常。我在集中酒吧時遇到問題。它與左邊對齊。我試過使用文本對齊:中心,但這不起作用。我認爲這些屬性存在衝突。你們能幫我把它集中嗎?我不是那麼大的UI開發者!居中導航欄

.navbar { 
list-style-type: none; 
list-style-position:outside; 
position: relative; 
margin: 0; 
padding: 0; } 

.navbar li{ 
display: block; 
overflow: hidden; 
padding: 0; 
cursor: pointer; 
float: left; 
width: 125px; 
height: 40px; 
margin-right: 0px; 
background-image:url(sprite.jpg); 
background-repeat:no-repeat; 

} 
.navbar a{ 
display:block; 
height:40px; 
text-indent:-9999px; 
outline:none; 

} 

回答

1

你試過嗎?

margin-left: auto; 
margin-right: auto; 

或者類似的東西?

margin-left: 0px; 
margin-right: 0px;