Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'm not quite sure what part of the layout exactly is the problem. You obviously know about <code>fieldset</code> and you layout them exactly the same way you would layout any other HTML element (such as <code>div</code>).</p> <p>I'm guessing it the columns. You have two possibilities here. A) Either put a number of <code>fieldset</code>s into a div with the width (100% / number of columns) and float those divs, or B) if you only need to support modern browsers use CSS 3 column properties and the browser will calculate the number of <code>fieldset</code>s per column for you automatically:</p> <p>A)</p> <pre><code>#columns .column { float: left; width: 33%; } &lt;div id="columns"&gt; &lt;div class="column"&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;/div&gt; &lt;div class="column"&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;/div&gt; &lt;div class="column"&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>B)</p> <pre><code>#columns { column-count: 3 /* Just covering all bases here. Not sure which browsers actually support this */ -webkit-column-count: 3 -moz-column-count: 3 -o-column-count: 3 -ms-column-count: 3 } &lt;div id="columns"&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;fieldset&gt;...&lt;/fieldset&gt; &lt;/div&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    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.
 

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