html - Need a SVG file that is 150px wide, 20px tall, reads "THIS IS A TEST' with bold fonts, has a lime background -
this code have far it's not good
<svg width="200" height="13"> <g id="layer1"> <text style="font-size:13px;font-family:arial;" x="0" y="13" id="">this test</text> </g> </svg>
i trying text fit in box , etc.
need add background color it.
this can serve:
<svg baseprofile="full" width="200" height="13"> <g id="layer1"> <rect width="100%" height="100%" fill="red" /> <text style="font-size:13px;font-family:arial;" x="0" y="13" id="">this test</text>
Comments
Post a Comment