bootstrap 有没有专门给 元素加颜色的 自带样式


比如


 <input type="text" id="email" name="email" value="" placeholder="请输入邮箱" />
<span class="tips">*</span>

bootstrap中有没有给元素标红色的 样式


 .tips { color:#f00; font-size:95%; }

css3 css bootstrap

西行寺撸撸子 11 years, 3 months ago

bootstrap 提供了一系列语义相关的样式,比如 .text-danger 是红色的。但是看你的情形并不是想使用这类样式,而是有自己独特的需求,那么就大胆的自己写样式,不要拘泥于 bootstrap 所提供的东西。

兔子sky answered 11 years, 3 months ago

Your Answer