I am trying to center my nav with display:inline-block in css?

nav {
position: fixed;
width: 100%;
}

nav ul {
width: 100%;
margin: auto;
}

nav ul li {
display: inline-block; 
margin: 5px 20px 5px 20px;
text-align: center; 
}
有帮助吗?

解决方案

Simply add text-align:center; to the parent element of the inline-block element.

nav {
position: fixed;
width: 100%;
}

nav ul {
width: 100%;
margin: auto;
text-align:center;
}

nav ul li {
display: inline-block; 
margin: 5px 20px 5px 20px;
text-align: center; 
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top