Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<pre><code>.div-table { display: table; width: auto; background-color: #eee; border: 1px solid #666666; border-spacing: 5px; /* cellspacing:poor IE support for this */ } .div-table-row { display: table-row; width: auto; clear: both; } .div-table-col { float: left; /* fix for buggy browsers */ display: table-column; width: 200px; background-color: #ccc; } </code></pre> <p>Runnable snippet:</p> <p><div class="snippet" data-lang="js" data-hide="true" data-console="false" data-babel="false"> <div class="snippet-code snippet-currently-hidden"> <pre class="snippet-code-css lang-css prettyprint-override"><code>.div-table { display: table; width: auto; background-color: #eee; border: 1px solid #666666; border-spacing: 5px; /* cellspacing:poor IE support for this */ } .div-table-row { display: table-row; width: auto; clear: both; } .div-table-col { float: left; /* fix for buggy browsers */ display: table-column; width: 200px; background-color: #ccc; }</code></pre> <pre class="snippet-code-html lang-html prettyprint-override"><code>&lt;body&gt; &lt;form id="form1"&gt; &lt;div class="div-table"&gt; &lt;div class="div-table-row"&gt; &lt;div class="div-table-col" align="center"&gt;Customer ID&lt;/div&gt; &lt;div class="div-table-col"&gt;Customer Name&lt;/div&gt; &lt;div class="div-table-col"&gt;Customer Address&lt;/div&gt; &lt;/div&gt; &lt;div class="div-table-row"&gt; &lt;div class="div-table-col"&gt;001&lt;/div&gt; &lt;div class="div-table-col"&gt;002&lt;/div&gt; &lt;div class="div-table-col"&gt;003&lt;/div&gt; &lt;/div&gt; &lt;div class="div-table-row"&gt; &lt;div class="div-table-col"&gt;xxx&lt;/div&gt; &lt;div class="div-table-col"&gt;yyy&lt;/div&gt; &lt;div class="div-table-col"&gt;www&lt;/div&gt; &lt;/div&gt; &lt;div class="div-table-row"&gt; &lt;div class="div-table-col"&gt;ttt&lt;/div&gt; &lt;div class="div-table-col"&gt;uuu&lt;/div&gt; &lt;div class="div-table-col"&gt;Mkkk&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt;</code></pre> </div> </div> </p>
 

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