twitter-bootstrap – 添加图标以提交按钮在twitter bootstrap 2

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 添加图标以提交按钮在twitter bootstrap 2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的表单输入提交按钮使用Twitter的引导图标。

http://twitter.github.com/bootstrap/base-css.html#icons上的示例主要显示样式超链接

最近我来到的图标显示在按钮旁边,但不在里面。

<div class="input-prepend">
   <span class="add-on"><i class="icon-user icon-white"></i></span>
   <input type="submit" class="btn-primary" value="Login" >
</div>

解决方法

您可以使用按钮标签,而不是输入
<button type="submit" class="btn btn-primary">
  <i class="icon-user icon-white"></i> Sign in
</button>

猜你在找的Bootstrap相关文章