Getting rid of all the rounded corners in Twitter Bootstrap

后端 未结 16 2421
旧时难觅i
旧时难觅i 2020-12-22 17:07

I love Twitter Bootstrap 2.0 - I love how it\'s such a complete library... but I want to make a global modification for a very boxy-not-round site, which is to get rid of al

16条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-22 17:44

    The code posted above by @BrunoS did not work for me,

    * {
      .border-radius(0) !important;
    }
    

    what i used was

    * {
      border-radius: 0 !important;
    }
    

    I hope this helps someone

提交回复
热议问题