我找到this answer但是我需要改变以对Bootstrap(butoms,text fields,images,... all)中的所有内容进行平方
我想这个:
<style>
* {
border-radius: 0px;
}
</style>
或者我必须指定每个类来执行此更改,就像在其他答案中一样? 这是最好的方法吗?
答案 0 :(得分:0)
我认为
html ~ * {
border-radius: 0px !important;
moz-border-radius: 0px !important;
webkit-border-radius: 0px !important;
}
可以胜任。