Posted: 2025 03 09 14:18:11
Last modified: 2025 03 09 14:18:11
Die Grundlagen von CSS: Was es ist und warum es wichtig ist
Warum ist CSS wichtig?
So funktioniert CSS
body { background-color: lightblue; font-family: Arial, sans-serif; }
<p style="color: blue; font-size: 16px;">This is an inline-styled paragraph.</p>
<style> h1 { color: red; text-align: center; } </style>
<!-- In der HTML Datei (z.B. index.html) --> <link rel="stylesheet" href="styles.css"> /* In einer extra CSS Datei (z.B. style.css) */ p { font-size: 18px; line-height: 1.5; }