SELF-Treffen in Mannheim 2025
SELFHTML wird 30 Jahre alt!
Die Mitgliederversammlung findet am 24.05.2025 um 10:00 statt. Alle Mitglieder und Interessierte sind herzlich eingeladen.
Davor und danach gibt es Gelegenheiten zum gemütlichen Beisammensein. → Veranstaltungs-Ankündigung.
Beispiel:SVG-Einbindung-CSS-2.html
Aus SELFHTML-Wiki
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="screen" href="./Beispiel:SELFHTML-Beispiel-Grundlayout.css">
<style>
textarea {
width: 60em;
height: 15em;
border: 1px solid #cccccc;
background-image:
url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%206%22%3E%3Ctext%20id%3D%22text%22%20x%3D%220%22%20y%3D%222%22%20font-family%3D%22Helvetica%22%20font-size%3D%221%22%20fill%3D%22silver%22%20style%3D%22text-transform%3A%20uppercase%22%20transform%3D%22rotate%28-14%29%22%3Ecomment%3C%2Ftext%3E%3C%2Fsvg%3E'),
url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%206%22%3E%3Ctext%20id%3D%22text%22%20x%3D%220%22%20y%3D%222%22%20font-family%3D%22Helvetica%22%20font-size%3D%221%22%20fill%3D%22red%22%20style%3D%22text-transform%3A%20uppercase%22%20transform%3D%22rotate%28-14%29%22%3Ecomment%3C%2Ftext%3E%3C%2Fsvg%3E'),
url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%206%22%3E%3Ctext%20id%3D%22text%22%20x%3D%220%22%20y%3D%222%22%20font-family%3D%22Helvetica%22%20font-size%3D%221%22%20fill%3D%22black%22%20style%3D%22text-transform%3A%20uppercase%22%20transform%3D%22rotate%28-14%29%22%3Ecomment%3C%2Ftext%3E%3C%2Fsvg%3E');
background-repeat: repeat;
background-size: 12em 6em;
background-position: 0 0, 8em -2em, 16em -4em;
/* <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><text id="text" x="0" y="2" font-family="Helvetica" font-size="1" fill="silver" style="text-transform: uppercase" transform="rotate(-14)">comment</text></svg> */
}
textarea:focus {
background: #FFC;
}
</style>
<title>Text als Hintergrund</title>
</head>
<body>
<h1>Text als Hintergrund (als eingebundenes SVG)</h1>
<h2>Ihre Bewertung</h2>
<textarea > …</textarea>
</body>
</html>