Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There's not enough information to answer your question. Like Pekka said, is it a table or not?</p> <p>Is it a form? I'm assuming so, if it has textboxes, textareas, etc. If it's a form, you could use a container for the two left columns and one for the right.</p> <pre><code>&lt;style type="text/css"&gt; div#formLeft { float: left; } textarea { display: block; } &lt;/style&gt; &lt;div id="formLeft"&gt; &lt;label&gt;Form Field 1&lt;/label&gt;&lt;input type="text" /&gt;&lt;br /&gt; &lt;label&gt;Form Field 2&lt;/label&gt;&lt;input type="text" /&gt;&lt;br /&gt; &lt;label&gt;Form Field 3&lt;/label&gt;&lt;input type="text" /&gt;&lt;br /&gt; &lt;label&gt;Form Field 4&lt;/label&gt;&lt;input type="text" /&gt;&lt;br /&gt; &lt;label&gt;Form Field 5&lt;/label&gt;&lt;input type="text" /&gt;&lt;br /&gt; &lt;/div&gt; &lt;div id="formRight"&gt; &lt;textarea&gt;&lt;/textarea&gt; &lt;textarea&gt;&lt;/textarea&gt; &lt;/div&gt; </code></pre> <p>Now, obviously there is a lot more need to be done, but this the bare bones.</p> <p>Recommendations? Style <code>label</code> with a fixed width to keep it looking tabular. Of course adjust the heights and everything to make it fit. Since the boxes on the right, which I assume are textareas, just give them IDs and heights.</p> <p>I took a screenshot to help visualize my code without actually entering it in. This is how I assume your layout is, but of course you can easily add other columns. Just make the <code>formLeft</code> ID turn into a class and throw in another!</p> <p><a href="http://img94.imageshack.us/img94/5341/testbp.gif" rel="nofollow noreferrer">alt text http://img94.imageshack.us/img94/5341/testbp.gif</a></p> <p><strong>Edit:</strong> Image uploaded at image shack. I can't guarantee how long it'll be there.</p> <p>Good luck!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload