What is the best way to create XSLT-safe columns in CSS?

Stealtkaxo

New Member
I had this working\[code\]<div id="3-col-container"> <div class="float-left">col1</div> <div class="float-left">col2</div> <div class="float-left">col3</div> <div class="clear-both"></div></div>\[/code\]When using XSLT I have a problem with the empty clear-both div. How can I create three columns without using floats? I can't use the display table cell because I need to support IE7. My solution worked until I introduced XSLT.
 
Top