You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
718 B
47 lines
718 B
/* CSS styles for my z-index demo page */ |
|
|
|
/* root element */ |
|
html { |
|
background: gray; |
|
} |
|
/* viewport */ |
|
body { |
|
background: white; |
|
height: 400px; |
|
} |
|
.block1 { |
|
display: none; |
|
background: pink; |
|
} |
|
.block2 { |
|
display: none; |
|
background: red; |
|
margin: -60px 0 0 20px; |
|
} |
|
.float { |
|
display: none; |
|
background: lightblue; |
|
float: left; |
|
margin: -150px 0 0 100px; |
|
} |
|
.inline { |
|
display: none; |
|
background: blue; |
|
color: white; |
|
padding: 10px 40px 10px 10px; |
|
} |
|
.position { |
|
display: none; |
|
background: orange; |
|
position: relative; |
|
left: 180px; |
|
top: -165px; |
|
height: 110px; |
|
} |
|
|
|
/* shared div styles */ |
|
div { |
|
padding: 20px; |
|
width: 200px; |
|
height: 80px; |
|
} |