html5 – 如何改变引导模式的边界半径?

前端之家收集整理的这篇文章主要介绍了html5 – 如何改变引导模式的边界半径?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法改变自举模态的边界半径.
.modal{
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px; 
}

我该怎么办?

解决方法

您需要将半径应用于.modal-content div而不是.modal div.

这是将边框半径应用于自举模式的正确方法

.modal-content  {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important; 
}

注:如果您的自定义CSS在您的引导程序css下方,请删除!重要标签.

原文链接:https://www.f2er.com/html5/168721.html

猜你在找的HTML5相关文章