SVG – Learning by Coding

[ text-decoration.svg --> Grafik anzeigen ]

 1: <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 2: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
 3:   "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
 4:   <!ATTLIST svg xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink">
 5: ]>
 6: 
 7: <!-- SVG - Learning by Coding - http://www.datenverdrahten.de/svglbc/ -->
 8: <!--    Author: Dr. Thomas Meinike 02/03 - thomas@handmadecode.de     -->
 9: 
10: <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
11: 
12:   <title>SVG - Learning by Coding</title>
13:   <desc>SVG-Spezifikation in Beispielen</desc>
14: 
15:   <defs>
16: 
17:     <style type="text/css">
18:       <![CDATA[
19: 
20:       text
21:       {
22:         font-size: 18px;
23:       }
24: 
25:       text.t1
26:       {
27:         text-decoration: none;
28:         fill: #666;
29:       }
30: 
31:       text.t2
32:       {
33:         text-decoration: overline;
34:         fill: #090;
35:       }
36: 
37:       text.t3
38:       {
39:         text-decoration: underline;
40:         fill: #F00;
41:       }
42: 
43:       text.t4
44:       {
45:         text-decoration: line-through;
46:         fill: #C0C;
47:       }
48: 
49:       text.t5
50:       {
51:         text-decoration: underline overline;
52:         fill: #00C;
53:       }
54: 			
55:       ]]>
56:     </style>
57: 
58:   </defs>
59: 
60:   <text x="20" y="30" style="fill: #000; font-size: 24px">
61:     Eigenschaft text-decoration
62:   </text>
63: 
64:   <text x="30" y="80" class="t1">
65:     text-decoration: none;
66:   </text>
67: 
68:   <text x="30" y="120" class="t2">
69:     text-decoration: overline;
70:   </text>
71: 
72:   <text x="30" y="160" class="t3">
73:     text-decoration: underline;
74:   </text>
75: 
76:   <text x="30" y="200" class="t4">
77:     text-decoration: line-through;
78:   </text>
79: 
80:   <text x="30" y="240" class="t5">
81:     text-decoration: underline overline;
82:   </text>
83: 
84: </svg>

[zum Anfang]

<Auswahl/>