Remove border radius from Select tag in bootstrap 3

前端 未结 6 425
离开以前
离开以前 2020-11-30 17:45

This seems like a trivial problem, but I can\'t figure it out.

On Bootstraps own website they have the Select example.

6条回答
  •  有刺的猬
    2020-11-30 18:29

    the class is called:

    .form-control { border-radius: 0; }
    

    be sure to insert the override after including bootstraps css.

    If you ONLY want to remove the radius on select form-controls use

    select.form-control { ... }
    

    instead

    EDIT: works for me on chrome, firefox, opera, and safari, IE9+ (all running on linux/safari & IE on playonlinux)

提交回复
热议问题