效果图
修改头部 <head>自定义css样式引用
menu-item-286
CSS 引用名称background
设置链接的背景颜色为暗金色(#D4AF37)border-radius
设置链接的边框半径为50px,使其具有圆形外观。padding
用于确保这个样式优先级较高,以覆盖其他可能存在的样式margin
设置链接的内边距为上下各5px,左右各10pxmargin
设置链接的外边距为上下各5px,左右为0color
将链接的文本颜色设置为白色(#fff)
.navbar-nav .menu-item-286 a {
background: #D4AF37;
border-radius: 50px !important;
padding: 5px 10px !important;
margin: 5px 0 !important;
color: #fff !important;
}
添加CSS引用名称
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...