Twitter's Bootstrap - Form Inputs Too Thin

后端 未结 5 801
难免孤独
难免孤独 2020-12-30 02:33

I\'m using Twitter\'s Bootstrap to create the HTML/CSS for my website. I run into a problem when creating the forms, however:

5条回答
  •  死守一世寂寞
    2020-12-30 03:05

    The fix did not work for me. But what helped was finding and removing following in our codebase:

    *, *:before, *:after {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
    }
    

提交回复
热议问题