如何将图标放置在我想要的位置?
在我当前网页标题中图标的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用与 HTML 内联的 CSS,如下所示:
这会在每个链接的左侧和右侧添加 10px 边距。
然而,在 HTML 页面的头部添加 CSS 会是一个更好的主意:
然后使用它作为 HTML:
You could use CSS inline with HTML which would look like this:
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:
And then using this as the HTML instead: