Styling twitter bootstrap buttons

前端 未结 14 2759
庸人自扰
庸人自扰 2020-12-04 05:18

Twitter-Bootstrap buttons are awesomely beautiful. Try them out by scrolling over them

\"bootstrap

14条回答
  •  时光说笑
    2020-12-04 05:54

    You can overwrite the colors in your css, for example for Danger button:

    .btn-danger { border-color: #[insert color here]; background-color: #[insert color here];
    
    .btn-danger:hover { border-color: #[insert color here]; background-color: #[insert color here]; }
    

提交回复
热议问题