Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#relativesDIV {
width: 400px;
height: 400px;
background-color: grey;
position: relative;
top: 120px;
left: 200px;
}
#absoulutesDIV {
width: 50px;
height: 50px;
background-color: red;
position: absolute;
top: 100px;
right: 200px;
}
span {
position: relative;
top: 20px;
left: 20px;
}
b {
position: absolute;
top: 20px;
left: 20px;
}

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Positionierung 1</title>
<link rel="stylesheet" type="text/css" href="positionierung1.css">
</head>
<body>
<div id="relativesDIV">
<div id="absoulutesDIV"></div>
</div>
<br><br><br><br><br><br><br><br>
<span>Relative</span> und <b>Absoulute</b> Positionierung sind voll super!
</body>
</html>