如何更改Bootstrap中所有内容的border-radius

时间:2017-03-14 14:56:05

标签: css twitter-bootstrap

我找到this answer但是我需要改变以对Bootstrap(butoms,text fields,images,... all)中的所有内容进行平方

我想这个:

<style>
    * {
         border-radius: 0px;
    }
</style>

或者我必须指定每个类来执行此更改,就像在其他答案中一样? 这是最好的方法吗?

1 个答案:

答案 0 :(得分:0)

我认为

html ~ * {
  border-radius: 0px !important;
  moz-border-radius: 0px !important;
  webkit-border-radius: 0px !important;
}

可以胜任。