Hi,
for some weird reason I can't get the floating to work in Firefox (Win & Mac) and IE: site link. It's based on ZURB's Foundation.
In Chrome it looks ok.
Any advice?
| SitePoint Sponsor |
Hi,
for some weird reason I can't get the floating to work in Firefox (Win & Mac) and IE: site link. It's based on ZURB's Foundation.
In Chrome it looks ok.
Any advice?

Hi Jammmy,
The problem is the first box in your row is slightly longer than the rest of the boxes, your best bet would be to wrap each row in their own <div class="row"></div> container which will clear the extra spacing created by these longer elements.
Blog/Portfolio | Evolution Xtreme | DFG Design | DFG Hosting | CSS-Tricks | Stack Overflow | Paul Irish
Having lame problems with your code? Let us help by using a jsFiddle


Or you could use inline-block instead of floating and avoid the snagging issue although you have to add hacks for ie6/7.
There is a white-space issue with inline-block but usually it doesn't notice when elements are spaced out anyway.Code:.four.columns{ display:inline-block; *display:inline;/* ie6/7 hack for inline-block*/ float:none!important; width:33%; vertical-align:top; margin-right:-2px;/* white space hack*/ }

Blog/Portfolio | Evolution Xtreme | DFG Design | DFG Hosting | CSS-Tricks | Stack Overflow | Paul Irish
Having lame problems with your code? Let us help by using a jsFiddle
Hi,
thanks for this fix. It works!
Bookmarks