我想水平翻转此SVG路径,使弧形弧面朝下。在调整坐标时,将非常感谢任何帮助......
这是我到目前为止所得到的:
<style>
.circular path {
fill: #3498db;
stroke: #3498db;
}
</style>
<svg class="circular border_blue" xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="80" viewBox="0 0 100 80" preserveAspectRatio="none">
<path d="M0 100 C40 0 60 0 100 100 Z">
</path>
</svg>