Initial commit

This commit is contained in:
2025-11-15 15:29:08 +02:00
commit e881dd953c
11 changed files with 406 additions and 0 deletions

21
style5.css Normal file
View File

@@ -0,0 +1,21 @@
body { font-family: sans-serif; padding: 20px; }
h3 { margin-bottom: 5px; }
.box {
width: 300px;
height: 70px;
border: 3px solid #388e3c;
background-color: #e8f5e9;
margin-bottom: 40px;
padding: 10px;
}
.box p {
width: 450px;
margin: 0;
}
.visible { overflow: visible; }
.hidden { overflow: hidden; }
.scroll { overflow: scroll; }
.auto { overflow: auto; }