我有这样的HTML:
<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
指定)具有双倍宽度。我无法在任何其他浏览器上复制它。
截屏:
在这支笔中重新创建。