CSS:清除锚标记的所有格式

发布于 2024-09-19 10:02:15 字数 125 浏览 3 评论 0原文

我有一个网站,页面格式为 800 像素宽,图像占据顶部 40 像素。我用锚标记包裹图像,以便单击图像将用户带到主页。当我用锚标签包裹图像时,图像似乎向右移动了一点,这导致了对齐!

有没有办法可以完全清除锚标记的所有格式?

I have a site where the page is formatted to be 800px wide with an image taking up the top 40 pixels. I wrapped the image with an anchor tag so that clicking on the image takes user to home page. When I wrap the image with an anchor tag, the image seems to shift to the right a little bit which throws of the alignment!

Is there a way I can clear absolutely all formatting from an anchor tag?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱本泡沫多脆弱 2024-09-26 10:02:15

如果是超链接,则一定是经典的图像边框问题,它会向图像添加可见边框。试试这个(如果您愿意,请编辑 a img 部分以仅定位您的标头或图像 ID 或其他内容):

a img {
    border: 0;
}

Must be the classic image border issue that adds a visible border to your image if it's a hyperlink. Try this (if you wish, edit the a img part to only target your header or the image ID or something):

a img {
    border: 0;
}
〆凄凉。 2024-09-26 10:02:15

大卫的评论是正确的;锚标记的每种样式(边框、边距、颜色、:visited 等)都必须单独撤消。 BoltClock 的建议对我来说已经足够了,但对于真正想要重置任何标签的其他人,请尝试查看 Yahoo 的重置 CSS (http://developer.yahoo.com/yui/3/cssreset/)。

David is right in his comment; Every style for the anchor tag (border, margin, color, :visited, etc) has to be individually undone. BoltClock's suggestion is sufficient for me, but for anyone else who truly does want to reset any tag, try looking at Yahoo's reset CSS (http://developer.yahoo.com/yui/3/cssreset/).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文