rect-path

作者: xueyueshuai | 来源:发表于2024-04-28 14:08 被阅读0次

    rect

    <svg width="120" height="400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 400">
      <rect x="0" y="0" width="100" height="400" fill="pink"></rect>
      <rect x="10" y="10" width="80" height="380" fill="red"></rect>
      <rect x="10" y="150" width="80" height="240" fill="blue"></rect>
    </svg>
    

    path

    <svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
      <rect x="0" y="0" width="100" height="100" fill="pink"></rect>
      <path d="M 0 0 L 100 0 L 50 100 Z" fill="orange" stroke="black" stroke-width="2"/>
    </svg>
    

    相关文章

      网友评论

          本文标题:rect-path

          本文链接:https://www.haomeiwen.com/subject/rovzxjtx.html