我的布局和设计非常简单,但我无法设置链接的垂直边距。这是一个缩短的例子:
<a href="http://www.google.de/">Google</a>
<a href="http://www.youtube.com/" style="margin-top: 20px; ">YouTube</a>
<a href="http://www.foo.de/">Bar</a>
每次第二个链接与所有其他链接具有相同的边距。这是Google Chrome的错误以及如何解决此问题吗?
修改:
有没有办法解决它而不将链接包裹在div
?
答案 0 :(得分:1)
这样的东西?
<a href="http://www.google.de/">Google</a>
<a href="http://www.youtube.com/" style="display:inline-block;margin-top: 20px;">YouTube</a>
<a href="http://www.foo.de/">Bar</a>
答案 1 :(得分:1)
<a href="http://www.google.de/">Google</a>
<a href="http://www.youtube.com/" style="position:relative;top:20px;">YouTube</a>
<a href="http://www.foo.de/">Bar</a>