Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You either have to add blank li elements like: </p> <pre><code>&lt;ul class="packages"&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;li&gt;1&lt;/li&gt; &lt;!--ADD BLANK --&gt; &lt;li&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Or set custom class for 7 and 8 to have border on bottom:</p> <p>CSS:</p> <pre><code>.border-bottom { border-bottom: 1px solid #444; } </code></pre> <p>HTML</p> <pre><code>&lt;ul class="packages"&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;li&gt;3&lt;/li&gt; &lt;li&gt;4&lt;/li&gt; &lt;li&gt;5&lt;/li&gt; &lt;li&gt;6&lt;/li&gt; &lt;li class="border-bottom"&gt;7&lt;/li&gt; &lt;li class="border-bottom"&gt;8&lt;/li&gt; &lt;li&gt;9&lt;/li&gt; &lt;li&gt;10&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>There is many ways you can go about this, it just depends on what your trying to accomplish. Here is an example with nested elements.</p> <p>CSS:</p> <pre><code>.packages li { float:left; margin:0 0 30px 0; width:176px; padding-top:30px; border-top text-align:center; } .packages ul { border-top:1px solid #444; overflow: hidden; width: 352px; } </code></pre> <p>HTML: </p> <pre><code>&lt;ul class="packages"&gt; &lt;ul&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;1&lt;/li&gt; &lt;/ul&gt; &lt;/ul&gt; </code></pre>
    singulars
    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. 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