Arranging in Bootstrap -


enter image description here


i have create character page mmorpg, page should have character image 130x130px , belonging items 32x32px inside parent of col-xs-12 col-sm-12 col-md-5 col-lg-5.

the output might not same picture close.

html

<div class="row-fluid">     <div class="col-xs-12 col-sm-12 col-md-5 col-lg-5">         <div class="row-fluid">             <div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">                  <div class="beta32"></div>                   <div class="beta32"></div>                   <div class="beta32"></div>                   <div class="beta32"></div>                        </div>             <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">                 <div class="alpha130"></div>                     <div class="row-fluid">                         <div class="col-md-3 col-md-offset-1 col-sm-3 col-sm-offset-1 col-xs-3 col-xs-offset-1">                              <div class="beta32"></div>                         </div>                         <div class="col-lg-2 col-md-2 col-sm-2 col-xs-2">                              <div class="beta32"></div>                         </div>                 </div>              </div>             <div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">                  <div class="beta32"></div>                   <div class="beta32"></div>                   <div class="beta32"></div>                   <div class="beta32"></div>                        </div>        </div>    </div> </div> 

fiddle


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -