Post by Stinky666 on Apr 10, 2017 2:15:21 GMT -8
From the code below, you can see I have 18 lines of text for the columns. I would have hoped (and want) it go go 6 | 6 | 6. It'd make the most sense. If I had only 16 bits of text, I would have assumed it'd go 6 | 6 | 4
If there was 11, I'd expect it to probably either go 4-4-3 or 5-5-1
For some reason, it's going 6 | 7 | 5 and no matter how many are in each column, it cuts off previous for the first line my "background" for the numbers (see image):
So in that, you see in Column 1, it has a bit of the top from the second column's "55" background, and then the 3rd column does the same from column 2's last one.
How do I make it distribute evenly ? Is there a simple height or row element I can add?
If there was 11, I'd expect it to probably either go 4-4-3 or 5-5-1
For some reason, it's going 6 | 7 | 5 and no matter how many are in each column, it cuts off previous for the first line my "background" for the numbers (see image):
So in that, you see in Column 1, it has a bit of the top from the second column's "55" background, and then the 3rd column does the same from column 2's last one.
How do I make it distribute evenly ? Is there a simple height or row element I can add?
<li style="display: block; background: #e1e1e1; margin: 100px 0 0 -150px;">
<h1 style="background: #E1E1E1 url('https://www.imageupload.co.uk/images/2017/04/07/crissXcross.png'); margin-top: -1.5em; padding: 0.35em 1.6em; font: normal 1.8em UbuntuRegular, Arial, Helvetica, sans-serif; color: #CE507F;">My Title</h1>
<ul style="margin: 1em 0; padding: 0em 4em; list-style: none; -webkit-column-count: 3; -moz-column-count: 3; column-count: 3;-webkit-column-gap: 2.5em; -moz-column-gap: 2.5em; column-gap: 2.5em; -webkit-column-rule: 1px solid #191919; -moz-column-rule: 1px solid #191919; column-rule: 1px solid #191919;">
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">22</i> My Text 01</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">26</i> My Text 02</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">33</i> My Text 03</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">35</i> My Text 04</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">40</i> My Text 05</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">45</i> My Text 06</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">55</i> My Text 07</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">60</i> My Text 08</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">63</i> My Text 09</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">66</i> My Text 10</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">77</i> My Text 11</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">80</i> My Text 12</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">89</i> My Text 13</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 10px; border-radius: 4px; color: #191919; margin-right: 5px;">99</i> My Text 14</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 6px; border-radius: 4px; color: #191919; margin-right: 5px;">100</i> My Text 15</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 6px; border-radius: 4px; color: #191919; margin-right: 5px;">101</i> My Text 16</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px 12px; border-radius: 4px; color: #191919; margin-right: 5px;">??</i> My Text 17</li>
<li><i style="font-style: normal; font-weight: bold; background: #CE507F; padding: 3px; border-radius: 4px; color: #191919; margin-right: 5px;">2000</i> My Text 18</li>
</ul>
</li>