Post Undeleted by Dan Brown
show/hide this revision's text 3

If you have this -


<style 

  <style type="text/css"&gt;
    >
      .cell {
            float: left;
            width: 100px;
            border: 1px solid;
            line-height: 1em;
      }
  &lt;/style&gt;

&lt;div </style>

  <div class="cell"&gt;TopLeft&lt;/div&gt;
&lt;div >TopLeft</div>
  <div class="cell"&gt;TopMiddlePlusSomeOtherTextWhichMakesItToLong&lt;/div&gt;
&lt;div >TopMiddlePlusSomeOtherTextWhichMakesItToLong</div>
  <div class="cell"&gt;TopRight&lt;/div&gt;
&lt;br/&gt;
&lt;div >TopRight</div>
  <br/>
  <div class="cell"&gt;BottomLeft&lt;/div&gt;
&lt;div >BottomLeft</div>
  <div class="cell"&gt;BottomMiddle&lt;/div&gt;
&lt;div >BottomMiddle</div>
  <div class="cell"&gt;bottomRight&lt;/div&gt;

</code>>bottomRight</div>

just switch to a vertical format with containing divs and use min-width in your CSS instead of width -

<code>

  <style type="text/css">
      .column {
            float: left;
            min-width: 100px;
      }
      .cell2 {
            border: 1px solid;
            line-height: 1em;
      }
  </style>

  

&lt;div <div class="column"&gt; &lt;div > <div class="cell2"&gt;TopLeft&lt;/div&gt; &lt;div >TopLeft</div> <div class="cell2"&gt;BottomLeft&lt;/div&gt; &lt;/div&gt; &lt;div >BottomLeft</div> </div> <div class="column"&gt; &lt;div > <div class="cell2"&gt;TopMiddlePlusSomeOtherTextWhichMakesItToLong&lt;/div&gt; &lt;div >TopMiddlePlusSomeOtherTextWhichMakesItToLong</div> <div class="cell2"&gt;BottomMiddle&lt;/div&gt; &lt;/div&gt; &lt;div >BottomMiddle</div> </div> <div class="column"&gt; &lt;div > <div class="cell2"&gt;TopRight&lt;/div&gt; &lt;div >TopRight</div> <div class="cell2"&gt;bottomRight&lt;/div&gt; &lt;/div&gt; &lt;br/&gt;

</code>>bottomRight</div> </div> <br/>

Of course, if you are displaying genuine tabular data it is ok to use a real table as it is semantically correct and will inform people using screen readers that is supposed to be in a table. It is using them for general layout or image-slicing that people will lynch you for.

    Post Deleted by Dan Brown
show/hide this revision's text 2
show/hide this revision's text 1