Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I would suggest you mark-up your content like this:</p> <pre><code>&lt;ul&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/contactme_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/bouncerate_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/analyseme_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/socialme_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/locateme_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/dailybubble_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/bouncedon_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/followme_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/exhibitormode_icon.png"/&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="images/new24/_landing/profile_slideout/treatsprofile_icon.png"/&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>... and also consider adding <code>alt</code> attributes to each image.</p> <p>Your CSS would look like this:</p> <pre><code>li { border: 1px solid red; background: blue; width: 129px; height: 116px; float: left; padding: 20px; margin: -1px 0 0 -1px; } </code></pre> <p>To preserve the top and left border, add this:</p> <pre><code>ul { margin: 1px 0 0 1px; } </code></pre> <p>The margin property is the one that causes the borders to collapse on this series of elements.</p> <p><a href="http://jsfiddle.net/Sohnee/mNRDb/" rel="nofollow">Here is a jsFiddle example</a>.</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