Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/HTML/html-kurs/Basics/positionierung1/positionierung1.css
2022-09-04 12:45:01 +02:00

29 lines
406 B
CSS

#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;
}