Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Maybe you should use more columns to your table, and more rows as well. And you should be using something else (like CSS instead), but don't get me started on that.</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;input id="Radio1" name="G1M" value="1" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input id="Radio5" name="G1L" value="1" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;Gentle or kindly&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input id="Radio2" name="G1M" value="2" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input id="Radio6" name="G1L" value="2" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;Persuasive, convincing&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input id="Radio3" name="G1M" value="3" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input id="Radio7" name="G1L" value="3" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;Humble, reserved, modest&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input id="Radio4" name="G1M" value="4" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input id="Radio8" name="G1L" value="4" type="radio" /&gt;&lt;/td&gt; &lt;td&gt;Original, inventive, individualistic&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>This <code>&lt;table&gt;</code> has one row for each option, and has one <code>&lt;td&gt;</code> for each radio button, and one <code>&lt;td&gt;</code> for the text.</p> <p>You could also get off using CSS and <code>&lt;div&gt;</code>s instead.</p> <pre><code>&lt;style&gt; input[type='radio'].spaceRight { margin-right: 10px; } &lt;/style&gt; &lt;!-- do this for each row --&gt; &lt;div&gt; &lt;input class="spaceRight" id="Radio1" name="G1M" value="1" type="radio" /&gt; &lt;input class="spaceRight" id="Radio2" name="G1M" value="2" type="radio" /&gt; Gentle or kindly &lt;/div&gt; </code></pre>
    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.
    3. 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