我有一个导航栏:
HTML:
<div id="navbar">
</div>
CSS:
#navbar{
width: 100%;
height: 50px;
background-color: #F0F0F0;
border-color: #B2B2B2;
border-style: solid;
-webkit-border-radius: 16px;
-moz-border-radius: 16px;
border-radius: 16px;
}
出于某种原因,边框使它偏离中心,div 的左侧总是有一些空间,但右侧没有。我该如何解决这个问题???