¿¹Á¦
<?xml version="1.0"
standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="8cm" height="5cm" viewBox="0 0 800 500"> <rect x="100" y="100" width="600" height="300" fill="red" stroke="blue" stroke-width="8"/> </svg> |
<?xml version="1.0"
standalone="no"?> <svg width="4cm" height="2.5cm" > <rect x="0.5cm" y="0.5cm" width="3cm" height="3cm"/> </svg> |
<?xml version="1.0"
standalone="no"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- Add DOCTYPE --> <xsl:template match="/"> <xsl:text disable-output-escaping="yes"> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> </xsl:text> <xsl:apply-templates/> </xsl:template> <!-- Add styling to all 'rect' elements --> <xsl:template match="rect"> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:attribute name="fill">red</xsl:attribute> <xsl:attribute name="stroke">blue</xsl:attribute> <xsl:attribute name="stroke-width">3</xsl:attribute> </xsl:copy> </xsl:template> <!-- default is to copy input element --> <xsl:template match="*|@*|text()"> <xsl:copy> <xsl:apply-templates select="*|@*|text()"/> </xsl:copy> </xsl:template> </xsl:stylesheet> |
<?xml version="1.0"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="4cm" height="2.5cm"> <rect x="0.5cm" y="0.5cm" width="3cm" height="1.5cm" fill="red" stroke="blue" stroke-width="3"/> </svg> |
¿¹Á¦ : mystyle.css
rect { fill: red; stroke: blue; stroke-width: 8 } |
<?xml version="1.0"
standalone="no"?> <?xml-stylesheet href="mystyle.css" type="text/css"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="8cm" height="5cm" viewBox="0 0 800 500"> <rect x="100" y="100" width="600" height="300"/> </svg> |
¿¹Á¦
<?xml version="1.0"
standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="8cm" height="5cm" viewBox="0 0 800 500"> <defs> <style type="text/css"><![CDATA[ rect { fill: red; stroke: blue; stroke-width: 8 } ]]></style> </defs> <rect x="100" y="100" width="600" height="300"/> </svg> |
¿¹Á¦
<?xml version="1.0"
standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="8cm" height="5cm" viewBox="0 0 800 500"> <rect x="100" y="100" width="600" height="300" style="fill:red; stroke:blue; stroke-width:8"/> </svg> |
¡¡