Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I made for you an example here: <a href="http://jsfiddle.net/paulalexandru21/yyjtB/" rel="nofollow">http://jsfiddle.net/paulalexandru21/yyjtB/</a></p> <p>I suggest you wont use tables because they are kinda old elements witch are not very optimized. Div are better ones. The code looks like this:</p> <p>Html:</p> <pre><code> &lt;div class="col border"&gt; &lt;div class="head"&gt; &lt;p&gt;Gold&lt;/p&gt; &lt;small&gt;FREE&lt;/small&gt; &lt;/div&gt; &lt;ul&gt; &lt;li&gt;&lt;b&gt;5&lt;/b&gt; products&lt;/li&gt; &lt;li&gt;&lt;b&gt;1&lt;/b&gt; image per product&lt;/li&gt; &lt;li&gt;&lt;b&gt;Basic&lt;/b&gt; stats&lt;/li&gt; &lt;li&gt;&lt;b&gt;Basic&lt;/b&gt; customization&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div class="col border"&gt; &lt;div class="head"&gt; &lt;p&gt;Platinum&lt;/p&gt; &lt;small&gt;FREE&lt;/small&gt; &lt;/div&gt; &lt;ul&gt; &lt;li&gt;&lt;b style="color: #76CAC6"&gt;25&lt;/b&gt; products&lt;/li&gt; &lt;li&gt;&lt;b style="color: #76CAC6"&gt;3&lt;/b&gt; image per product&lt;/li&gt; &lt;li&gt;&lt;b style="color: #76CAC6"&gt;Better&lt;/b&gt; stats&lt;/li&gt; &lt;li&gt;&lt;b style="color: #76CAC6"&gt;Full&lt;/b&gt; customization&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div class="col border"&gt; &lt;div class="head"&gt; &lt;p&gt;Diamond&lt;/p&gt; &lt;small&gt;FREE&lt;/small&gt; &lt;/div&gt; &lt;ul&gt; &lt;li&gt;&lt;b style="color: #87BE84"&gt;100&lt;/b&gt; products&lt;/li&gt; &lt;li&gt;&lt;b style="color: #87BE84"&gt;5&lt;/b&gt; image per product&lt;/li&gt; &lt;li&gt;&lt;b style="color: #87BE84"&gt;Best&lt;/b&gt; stats&lt;/li&gt; &lt;li&gt;&lt;b style="color: #87BE84"&gt;Full&lt;/b&gt; customization&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code> html, body {font-family: arial;} .col { height: 500px; width: 200px; float: left; } .arange { padding-top: 20px; background: pink; } .border { border-right: 1px dotted gray; } .head{ padding-top: 20px; background: #000; color: #FFF; width: 200px; height: 90px; lign-height: 100px; } p { font-size: 18pt; font-family: arial; color: white; margin-left: 20px; } small { font-size: 10pt; font-family: arial; color: gray; font-weight: bold; margin-left: 20px; } ul { margin-left: 20px; margin-right: 20px; color: gray; } ul li { padding: 10px 0px; border-bottom: 1px dotted gray; font-size: 15px; } blue {color: #76CAC6;} </code></pre>
 

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