Guys u i have some space in ul
list. I try to set padding: 0
and margin: 0
and not work i has again space near left border.
Check my screenshot:
Here is my code:
div.topbar-list > ul {
margin: 0;
padding: 0;
overflow: hidden;
list-style: none;
}
div.topbar-list > ul > li {
padding: 5px;
display: inline-block;
border-left: 1px solid #ccc;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
div.topbar-list > ul > li:first-child {
border-right: 0 none;
}
div.topbar-list > ul > li a {
color: #333;
}
div.topbar-list > ul li:hover {
background-color: #eee;
}
div.topbar-list > ul > li a:hover {
text-decoration: none;
}
<div class="topbar-list">
<ul>
<li><a href="#"><i class="fa fa-phone-square"></i> +381 123 342 543</a>
</li>
<li><a href="#"><i class="fa fa-mobile-phone"></i> +381 123 432 542</a>
</li>
<li><a href="#"><i class="fa fa-mobile-phone"></i> +381 315 645 122</a>
</li>
</ul>
</div>
Also i try to debug it from Inspector/Firebug
but there is not any padding and fixed width.
How i can remove that white space?