2016-06-10 50 views
0

以下代碼不會呈現白色文本。我希望爲白色文本呈現:SVG語法錯誤

<svg xmlns="http://www.w3.org/2000/svg"> 
<rect width="200" height="200"> 
    <text id="e1_texte" style="font-family: Arial; font-size: 20px;" y="40" x="4" 
     fill="white"> 
    Please display me 
    </text> 
</rect> 
</svg> 

回答

1

該文本不屬於<rect>元素。外移動它:

<svg xmlns="http://www.w3.org/2000/svg"> 
 
<rect width="200" height="200"> 
 
</rect> 
 
    <text id="e1_texte" style="font-family: Arial; font-size: 20px;" y="40" x="4" 
 
     fill="white"> 
 
    Please display me 
 
    </text> 
 
</svg>