Test 三角形: Difference between revisions

From 清冽之泉
Jump to navigation Jump to search
Created page with "<!doctype html> <meta charset="utf-8"> <!-- 等边三角形:边长用 100 单位,高度 = 100 * sqrt(3)/2 ≈ 86.60254 --> <svg viewBox="0 0 100 86.60254037844386" style="display:block; width:200px; height:auto;" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="等边三角形"> <polygon points="50,0 100,86.60254037844386 0,86.60254037844386" fill="#3498db"/> </svg>"
 
No edit summary
Line 1: Line 1:
<html>
<!doctype html>
<!doctype html>
<meta charset="utf-8">
<meta charset="utf-8">
Line 9: Line 10:
           fill="#3498db"/>
           fill="#3498db"/>
</svg>
</svg>
</html>

Revision as of 15:24, 23 September 2025

<html> <!doctype html> <meta charset="utf-8"> <svg viewBox="0 0 100 86.60254037844386"

    style="display:block; width:200px; height:auto;"
    xmlns="http://www.w3.org/2000/svg"
    role="img" aria-label="等边三角形">
 <polygon points="50,0 100,86.60254037844386 0,86.60254037844386"
          fill="#3498db"/>

</svg> </html>