Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A bit tricky, but I think, this is basically what you want:</p> <p><a href="http://jsfiddle.net/qe2vc/" rel="nofollow">http://jsfiddle.net/qe2vc/</a></p> <p>HTML:</p> <pre><code>&lt;div class="products"&gt; &lt;div class="legend"&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Property 1&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Property 2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Property 3&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt;&lt;div&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;Product A&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Yes&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;No&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;No&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt;&lt;div&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;Product B&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Yes&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Yes&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;No&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt;&lt;div class="featured"&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;Product C&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Yes&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Yes&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Yes&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code>DIV.products &gt; DIV { display: inline-block; border: 1px solid blue; height: 100px; vertical-align: middle; padding: 0 3px; } DIV.products &gt; DIV.legend { border: 0; } DIV.products &gt; DIV.featured { border: 1px solid orange; height: 108px; padding-top: 8px; box-shadow: 0px 0px 6px -1px #000; } </code></pre> <p>Basically, have a couple divs next to each other, style one of them differently. Then put a table with the same heights/rows in each box.<br> With some more styling work, this example can be made to look like your example.</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. 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