Why inline-block overlaps container's bottom border in Chrome in following test-case?
HTML:
<ul>
<li><a href="">test</a></li>
<li><a href="">test</a></li>
<li><a href="">test</a></li>
</ul>
CSS:
ul {
border-bottom: 1px solid red;
font-size: 12px;
}
li a {
display: inline-block;
padding: 0.4em;
background: yellow;
}
test-case:
Actually, I found bug report.
Please, star this issue, if you are experiencing the same.