如何将图标放置在我想要的位置?

发布于 2024-12-01 00:54:30 字数 282 浏览 1 评论 0原文

在我当前网页标题中图标的 HTML 代码中,我使用以下代码:

<a href=''><img src=''/></a> | <a href=''><img src''/></a>

它将我的图标放置得非常靠近,彼此相邻,但带有“|”他们之间。

有人可以推荐任何最好的 HTML 代码示例,这将允许我更具体地放置图标并且没有“|”在他们之间。

(请原谅之前对我的问题的糟糕解释!)

In my current HTML code for icons in my webpage's header, I use the code:

<a href=''><img src=''/></a> | <a href=''><img src''/></a>

which puts my icons extremly close, next to eachother, but with a "|" between them.

Could someone recommend any preferably HTML code examples, that would allow me to place the icons more specifically and without the "|" in between them.

(Excuse the former poor explanation of my problem!)

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

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

发布评论

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

评论(1

死开点丶别碍眼 2024-12-08 00:54:30

您可以使用与 HTML 内联的 CSS,如下所示:

<a href='' style='margin: 0px 10px 0px 10px'><img src=''/></a> <a href='' style='margin: 0px 10px 0px 10px'><img src''/></a>

这会在每个链接的左侧和右侧添加 10px 边距。

然而,在 HTML 页面的头部添加 CSS 会是一个更好的主意:

<style type="text/css">
.menuItem {
margin: 0px 10px 0px 10px;
}
</style>

然后使用它作为 HTML:

<a href='' class='menuItem'><img src=''/></a> <a href='' class='menuItem'><img src''/></a>

You could use CSS inline with HTML which would look like this:

<a href='' style='margin: 0px 10px 0px 10px'><img src=''/></a> <a href='' style='margin: 0px 10px 0px 10px'><img src''/></a>

This adds a 10px margin to the left and right of each link.

However, adding the CSS in the head of your HTML page would be a better idea:

<style type="text/css">
.menuItem {
margin: 0px 10px 0px 10px;
}
</style>

And then using this as the HTML instead:

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