作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我的 svg 上方有一个间隙,无论高度如何,它仍然存在。我确实想到了解决这个问题的解决方案,比如设置 y="22"然后设置 margin-top: 10px;。但是,我更只想找出到底出了什么问题,以及解决这个问题的正确方法是什么。
<!DOCTYPE html>
<html>
<head>
<style>
span.top { display:block;}
</style>
</head>
<body>
<span class="top">
<a href="https://www.google.com/" title="Home">
<svg width="70px" height="50px">
<text x="0" y="50" font-family="arial" font-size="25">
Home
</text>
</svg>
</span>
</body>
</html>
最佳答案
您只需要将 y
值更改为 20 而不是 50
<span class="top">
<a href="https://www.google.com/" title="Home">
<svg width="70px" height="50px">
<text x="0" y="20" font-family="arial" font-size="25">
Home
</text>
</svg>
</span>
关于html - 如何从 svg 文本中删除上部间隙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46656675/
我是一名优秀的程序员,十分优秀!