html5 – SVG元素似乎具有任意高度

前端之家收集整理的这篇文章主要介绍了html5 – SVG元素似乎具有任意高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在努力学习一些SVG.但浏览器似乎进入了一个正确的旧混乱呈现它.

采用以下HTML

<html>
  <head></head>
  <body>
    <svg xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink">
      <rect height="100" width="100" style="stroke:#006600; fill: #00cc00"/>
    </svg>
    <p>Hello? Hellooooooooooooo?</p>
  </body>
</html>

查看这是任何现代浏览器,您将在矩形和以下HTML段落之间看到任意数量的空白. (IE9没有显示任何内容,但没有人会对此感到惊讶.)

Firefox(Firebug)没有给出svg或rect元素的高度.它只是躲避并说’自动’.

Opera表示,svg的高度为150px,并为rect表示“auto”.

Chrome会提升并为两者提供高度.对于矩形102px(显然包括中风)和svg为428px.

我的期望是svg元素将是一个“薄”容器(即不增加内容的尺寸),因此高度为102px.

任何人都知道正确的行为应该是什么以及我如何解决这个问题?

解决方法

您没有明确定义SVG的宽度或高度,矩形放置的位置,甚至SVG的哪些部分.浏览器以不同的方式处理事情并不奇怪.

尝试定义宽度和高度:

<svg xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" width="102px" height="102px">
  <rect height="100" width="100" style="stroke:#006600; fill: #00cc00"/>
</svg>

或者,定义一个viewBox

<svg xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 102 102">
  <rect height="100" width="100" style="stroke:#006600; fill: #00cc00"/>
</svg>

或两者:

<svg xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="-50 -50 52 52" width="102px" height="102px">
  <rect height="100" width="100" style="stroke:#006600; fill: #00cc00"/>
</svg>

Here are some examples in action.

原文链接:https://www.f2er.com/html5/168490.html

猜你在找的HTML5相关文章