html - Float ignored in column div -


i have following project here , have configured columns use float in css in hope have image column on left , content beside it. in chrome content stays below images.

css:

#wadadetails .propinfocont .col1  {  width:400px !important;  float:left !important;  }  #wadadetails .propinfocont .col1 #loadarea img  {  width:420px !important;  height:315px !important; float:left !important;  }  #wadadetails .propinfocont .col2  {  width:230px; margin:0;  float:left !important;  } 

you have defined width of both columns 100% of available space:

#wadadetails div{ width:100% !important }

getting rid of allow 2 columns side side.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -