Зачем нужен дополнительный интервал в ячейке таблицы, если в ней 2 элемента href

Картинка стоит тысячи слов. Обратите внимание на пробел между последней строкой и остальными.

enter image description here

Вот код.

<html>
<head></head>
<style type="text/css">
td a {
text-decoration: none;
color: black;
font-size:11px;
font-family: Arial, 
}
</style>
<body>
<table>
    <tr>
        <td width="120px"><a href="#" target="__blank">Now is the time for all good men to come to the aide of their country said the quick brown fox to the lazy cow.</a> <a href="#" target="__blank">Moo</a></td>
    </tr>
</body>
</html>

Если я возьму второй тег a и включу текст Moo в первый тег a, интервал исчезнет. Что здесь происходит?

5
задан Brian Tompsett - 汤莱恩 17 January 2019 в 14:51
поделиться