1
當我的SVG圖片是在底部截斷
我的SVG是剛剛超過全屏矩形一個circke文本爲什麼嵌入在HTML
SVG
<svg version="1.1"
baseProfile="full"
xmlns="http://www.w3.org/2000/svg">
<rect width="100%" height="100%" fill="red"/>
<circle cx="150" cy="100" r="80" fill="green"/>
<text x="150" y="125" font-size="60" text-anchor="middle" fill="white">Hello SVG</text>
</svg>
當IMG SRC是arbitriraly在截斷爲什麼?如何解決這個問題?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
<body>
<img src="hello.svg" type="image/svg+xml">
</body>
</html>