У меня есть HTML так:Firefox: Img с 2х srcset указанный имеет странный интервал, когда внутри поплавка
<div id='container'>
<div class='left mr1'>
<img src='https://placehold.it/100x50' srcset='https://placehold.it/200x100 2x'>
</div>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
CSS вот так:
#container {
width: 400px;
background: #eee;
padding: 10px;
}
.mr1 {
margin-right: 10px;
}
.left {
float: left;
}
В Firefox только, если смотреть на «сетчатку ", это приводит к .left
div
(который не имеет width
) с двойной шириной. Я не могу воспроизвести это в любом другом браузере.
Скриншот:
Воссоздал в this pen.
В чем ваш вопрос? – Blubberguy22
@ Blubberguy22: Почему FF ведет себя по-разному ко всем другим браузерам? И.Е .: Почему есть лишнее пространство? –
Для справок в будущем это [подтвержденная ошибка] (https://bugzilla.mozilla.org/show_bug.cgi?id=1149357) –