這個是顯示2px的,有問題: <svg xmlns:xlink="http://www.w3.org/1999/xlink"> <polyline fill="none" stroke="#000" points="74,43 135,43 135,123 196,123" /> </svg> 糾正之后的,顯示1px: <svg xmlns:xlink="http://www.w3.org/1999/xlink"> <g transform="translate(0.5 0.5)"> <polyline fill="none" stroke="#000" points="74,43 135,43 135,123 196,123" /> </g> </svg> 文字模糊: <svg xmlns:xlink="http://www.w3.org/1999/xlink"> <text y="20" stroke="#f00">變粗模糊的文字</text> <text y="40" fill="#f00">清晰的文字</text> </svg>