1、多边形和文本:
<style>
polygon{
fill: transparent;
stroke: black;
stroke-width: 3px;
}
text{ /* 也可对文字起作用 */
stroke: blue;
stroke-width: 3px;
}
</style>
</head>
<body>
<svg width="500px" height="300px" style="border: 1px solid">
<polygon points="0 0,50 50,50 100,100 100,100 50"></polygon><!-- 多边形 :会连接出一个多边形;而折线不会首尾相连,而两者都填充的话,则一样-->
<text x="300" y="50">邓哥身体好</text>
</svg>
</body>