html - h1 icon vertical-align not work in bootstrap 2.3.2 -


i have css/html code show icon in h1 :

css:

h1 { font-size:32px; font-weight:400; margin:6px 0;  } h1>i { display:inline-block; vertical-align:middle; text-align:center; } 

html:

<div class="container"> <h1><i class="icon-search"></i>bootstrap 3 glyphicons</h1> </div> 

but vertical-align not worked bootstrap 2.3.2. note: know worked in version 3.+. how fix problem version?

demo here

try instead overload twitter bootstrap default rule h1 :

h1>[class^="icon-"], h1>[class*=" icon-"] {     vertical-align: middle; } 

updated demo


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -