我在 CSS 中创建一个导航栏。导航栏有一个背景图像,我希望图像有圆角。我已经尝试过其他的东西,-moz
但到目前为止没有任何效果。这是我的CSS:
ul{
background-image: url(nav_bar.png); height: 60px;width: 35%;
background-repeat: no-repeat;
position: relative;
margin:1;
padding:0;
left: 30%;
}
我怎样才能给它圆角?
谢谢!