I'm creating a list using <ul>
, but I need it to be "united". Even though I removed all of the borders, padding and margins, it is still creating a space between the images. How can I remove it?
<h4>An Unordered List:</h4>
<ul>
<li><img class="nomarge" ..../></li>
<li><img class="nomarge" ..../></li>
<li><img class="nomarge" ..../></li>
</ul>
<ul>
<li><img class="nomarge" ..../></li>
<li><img class="nomarge" ..../></li>
<li><img class="nomarge" ..../></li>
</ul>
CSS
ul {
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
border: 0px 0px 0px 0px;
display: table;
table-layout: fixed;
display: inline;
}
li {
padding: 0px 0px 0px 0px;
border: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
display: table-cell;
}