css - Bootstrap: ordered list with divs not aligning -


i'm using bootstrap create website. need create ordered list has text image next it. reason, content of list shifted 1 line looks this:

1.    text here [ image here ] 2.   text here  [ image here ] 

how align properly?

here code:

                <ol>                     <li>                         <div class="span12">                             <div class="span6">test</div>                             <div class="span6"><img src="asdfd.png"></div>                         </div>                         <div class="clearfix"></div>                     </li>                     <li>                         <div class="span12">                             <div class="span6">test</div>                             <div class="span6"><img src="asdfds"></div>                         </div>                         <div class="clearfix"></div>                     </li>                 </ol> 


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -