Habe folgende Liste:
Wieso muss ich dem li einen Border geben, damit der Firefox das margin-top beim anchor annimmt? Bzw. wie kann ich das umgehen?
PHP-Code:
<ul style="background: #0000ff;">
<li style="background: #ff9900; height: 50px; border: 1px solid #fff;">
<a style="background: #ff0000; margin-top: 5px; height: 30px; display: block;" href="#">Test 1</a>
</li>
<li style="background: #ff9900; height: 50px;">
<a style="background: #ff0000; margin-top: 5px; height: 30px; display: block;" href="#">Test 1</a>
</li>
<li style="background: #ff9900; height: 50px;"><a href="#">Test 1</a></li>
<li style="background: #ff9900; height: 50px;"><a href="#">Test 1</a></li>
</ul>
Kommentar