Note that there are some explanatory texts on larger screens.

plurals
  1. POMaking colspans in CSS made tables
    primarykey
    data
    text
    <p>I have the following form which is made not using the standard <code>&lt;table&gt;</code> tag but with CSS table(<code>display:table, display:table-row, display: table-cell</code>). Till here no problem occurs but then I need some colspans in CSS which I am not able to apply. I used <code>column-span</code> but it didn't worked!</p> <p><strong>HTML:</strong></p> <pre><code>&lt;div id="form"&gt; &lt;br/&gt;&lt;br/&gt; &lt;form id="form_container"&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;select&gt;&lt;/select&gt;&lt;/span&gt; &lt;span class="cell"&gt;&lt;input type="text" /&gt;&lt;/span&gt; &lt;/span&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;input type="email" /&gt;&lt;/span&gt; &lt;/span&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;select&gt;&lt;/select&gt;&lt;/span&gt; &lt;/span&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;select&gt;&lt;/select&gt;&lt;/span&gt; &lt;/span&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;select&gt;&lt;/select&gt;&lt;/span&gt; &lt;/span&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;input type="text" /&gt;&lt;/span&gt; &lt;span class="cell"&gt;&lt;select&gt;&lt;/select&gt;&lt;/span&gt; &lt;/span&gt; &lt;span class="row"&gt; &lt;span class="cell"&gt;&lt;input type="checkbox" /&gt;&lt;b&gt;I have read the&lt;/b&gt; &lt;a&gt;Terms &amp; Conditions&lt;/a&gt;&lt;/span&gt; &lt;/span&gt; &lt;input type="image" src="img/send_button.png" /&gt; &lt;/form&gt; &lt;/div&gt; </code></pre> <p><strong>CSS:</strong></p> <pre><code>#form_container { display: table; } .row { display: table-row; } .cell { display: table-cell; } input, select { padding: 5px; border-radius: 5px; } </code></pre> <p><a href="http://jsfiddle.net/Mx7Wc/" rel="nofollow">Fiddle.</a></p> <p>I want the colspan on the rows which have only one cell. Is this possible with CSS or not?</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.
 

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