2014-05-17 36 views
0

我想在我的標題旁邊對齊圖形。在標題旁邊對齊圖形

enter image description here

+0

歡迎堆棧溢出。請閱讀[如何提出一個好問題](http://stackoverflow.com/help/how-to-ask)。特別是,知道您正在使用的引導程序版本將有助於您查看足夠的代碼以確定您已經設置的內容。 –

回答

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> 
0

我希望這個代碼將會幫助你:

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

直接的標題文字之前把它放在一個<span>

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

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

這是假設你在引導3.0 +