Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Fluid is very vague term, by fluid do you mean its width can expand and contract like a table does for different size screens, or when the browser window is resized? Or do you want he column widths to all adjust to same width as the cell with the longest/largest content?</p> <p>The first is done like so</p> <pre><code>&lt;div style="position: absolute; width: 100%;"&gt; &lt;div style="position: relative; width: 100%; clear: both;"&gt; &lt;div style="position: relative; width: 50%; float: left;"&gt; &lt;/div&gt; &lt;div style="position: relative; width: 50%; float: left;"&gt; &lt;/div&gt; &lt;/div&gt; &lt;div style="position: relative; width: 100%; clear: both;"&gt; &lt;div style="position: relative; width: 50%; float: left;"&gt; &lt;/div&gt; &lt;div style="position: relative; width: 50%; float: left;"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>That should simulate two rows with two columns in each row and widths are based on the screen size.</p> <p>The second with the columns adjusting based on the content size.</p> <pre><code>&lt;div style="position: absolute; width: 100%;"&gt; &lt;div style="position: relative; float: left;"&gt; &lt;div style="position: relative; min-width: 1%; max-width: 75%;"&gt; &lt;/div&gt; &lt;div style="position: relative; min-width: 1%; max-width: 75%;"&gt; &lt;/div&gt; &lt;/div&gt; &lt;div style="position: relative; float: left;"&gt; &lt;div style="position: relative; min-width: 1%; max-width: 75%;"&gt; &lt;/div&gt; &lt;div style="position: relative; min-width: 1%; max-width: 75%;"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>That is two columns with with two rows each. Set the "min-width" and "max-width" to whatever you need. I don't think I have ever had a reason to test anything like this, so if it doesn't work you could try setting "display: inline" for each row.</p> <p>And If neither of these work try posting your test code. I am certain you can make a tables out of divs. A while back after several years of not using tables I inadvertently made a site, that should have used tables, out of divs. What your looking to do can be done it is just a matter of working the CSS.</p>
    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.
    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