This commit is contained in:
2024-10-14 00:08:40 +02:00
parent dbfba56f66
commit 1462d52e13
4572 changed files with 2658864 additions and 0 deletions

66
HTML CSS Tabs/index.css Normal file
View File

@@ -0,0 +1,66 @@
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.main {
height: 100%;
width: 100%;
z-index: -1;
background-color: #BBBBBB;
}
.content {
position: relative;
overflow: auto;
z-index: 0;
}
.oben {
height: 100px;
width: 100%;
z-index: 1;
background-color: red;
position: fixed;
}
.rechts {
position: absolute;
top: 100px;
bottom: 100px;
right: 0px;
z-index: 0;
display: block;
background-color: blue;
width: 200px;
}
.unten {
position: fixed;
display: block;
bottom: 0em;
z-index: 1;
height: 100px;
width: 100%;
background-color: green;
float: bottom;
}
.links {
position: absolute;
top: 100px;
bottom: 100px;
z-index: 0;
background-color: yellow;
float: left;
}
input {
width: 100%;
margin: 0;
padding: 0;
border: 0;
font-size: 200%;
}