我试图改变模式头文件twitter bootstrap的背景颜色使用下面的CSS代码。
.modal-header { padding:9px 15px; border-bottom:1px solid #eee; background-color: #0480be; } .modal-header .close{margin-top:2px} .modal-header h3{margin:0;line-height:30px}
解决方法
你可以使用下面的css,把这个在你的自定义css重写引导css。
.modal-header { padding:9px 15px; border-bottom:1px solid #eee; background-color: #0480be; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; }