在标题旁边对齐glyphicon

时间:2014-05-17 04:06:51

标签: css twitter-bootstrap

我想在标题旁边对齐一个字形。

enter image description here

3 个答案:

答案 0 :(得分:1)

将其直接放在标题文字之前的<span>中:

<div class="h2">
  <span class="glyphicon glyphicon-user"></span>
  Blacklisting
</div>

示例:http://www.bootply.com/xMbQvvIr4l

这假设您使用的是Bootstrap 3.0。+

答案 1 :(得分:0)

使用float

CSS

.glypic{

  float:left;
  postion:relative;
         }
  .myheader{
   float:left;
   postion:relative;
   margin-left:5px;
    }

HTML

<div class="header">
  <div class="glypic">
    <img src="img/glypic.png">
  </div>
  <div class="myheader">
       <h2>Blacklisting</h2>
  </div>


</div>

答案 2 :(得分:0)

我希望这段代码可以帮到你:

.header div{float:left;margin-right:5px;}