<rect>

时间:2017-12-15 10:49:33

标签: html css

我在&#39; rect&#39;上有不同的大小。我不能使用&#39; border-top&#39;选项,因为它不适用于rect。我怎么能做自适应边界顶部?

&#13;
&#13;
rect {
stroke-dasharray: 60, 1000;
stroke-width: 5;
stroke: #000000;
}
&#13;
<svg width="100" height="100"
     viewBox="0 0 100 100"
     xmlns="http://www.w3.org/2000/svg">

  <rect width="40" height="50" fill="#7cb5ec" class=""></rect>
  
</svg>

<svg width="100" height="100"
     viewBox="0 0 100 100"
     xmlns="http://www.w3.org/2000/svg">

  <rect width="60" height="75" fill="#7cb5ec" class=""></rect>
  
</svg>

<svg width="100" height="100"
     viewBox="0 0 100 100"
     xmlns="http://www.w3.org/2000/svg">

  <rect width="80" height="100" fill="#7cb5ec" class=""></rect>

</svg>
&#13;
&#13;
&#13;

0 个答案:

没有答案