This commit is contained in:
2025-02-13 18:50:22 +01:00
parent 5c211013b5
commit 4cae4e9e28
803 changed files with 107055 additions and 14 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Übung: CSS-Regeln überschreiben</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="custom.css">
<style>
article.art {
border: 1px solid lightgray;
}
</style>
</head>
<body>
<h1 style="color: blue;">Mein Blog</h1>
<article class="art">
<h2>CSS Grid</h2>
<p>Das Grid-Modell von CSS...</p>
</article>
</body>
</html>

View File

@@ -0,0 +1,20 @@
body {
font-family: Times, serif;
}
article {
padding: 5px;
margin: 10px;
}
h1 {
color: orange !important;
}
body > article.art {
border: 5px solid black;
}
body {
font-family: Arial,sans-serif;
}