Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是网页。
如何使div图像紧密环绕?现在它在图像底部停留了 4px(见红线,我给了 div 红色背景)。
div
我不明白那些 4px 来自哪里以及如何摆脱它们。
给出图像vertical-align: bottom或给出包含的 div line-height: 0。
vertical-align: bottom
line-height: 0
这是由于图像的设置inline-block和inline元素的渲染方式。您还可以使图像成为块级元素。
inline-block
inline
你的选择。