css 问题 - 即使没有高度或宽度,跨度和锚点也会导致额外的边距
让我发疯...
叠加绝对定位的
跨度/锚点/图像绝对定位的
跨度和锚点设置为 width:0;height:0;margin:0;
和他们仍然将图像偏移了几个像素
(如果你突出显示叠加层,那就很明显了)
CSS Gurus?
Driving me crazy...
Overlay-thats-absolutely-positioned
Span/anchor/image-thats-absolutely-positioned
span and anchor are set to width:0;height:0;margin:0;
and still they offset the image by a few pixels
(if you highlight the overlay it's obvious)
CSS Gurus??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将
display: block;
添加到其 CSS 中即可。内联元素的宽度和高度将被忽略。Just add
display: block;
to their CSS. The width and height are ignored for inline elements.