佈局 - z-index
<style type="text/css">
#left{
top: 0;
bottom: 0;
position: fixed;
width: 200px;
margin-top: 60px;
overflow-y:auto;
z-index: 2;
}
#right{
top: 0;
bottom: 0;
position: fixed;
margin-top: 60px;
padding-left: 200px;
overflow-y:auto;
width: 100%;
z-index: 1;
}
h1{
margin: 0px;
}
</style>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div style="background-color: gray;width:200px;position: absolute;top: 0;bottom: 0;left: 0;z-index: 1">
<div style="background-color:red;width: 210px;height: 50px;position: absolute;left: 0;right: 0;top: 0;bottom: 0;margin: auto;z-index: 3"></div>
<div style="background-color:black;width: 400px;height: 600px;position: absolute;left: 0;right: 0;top: 0;bottom: 0;margin: auto;z-index: 2;margin-left: 190px;">
</div>
</div>
</body>
</html>
相關文章
- css佈局-float佈局CSS
- CSS佈局 --- 居中佈局CSS
- 居中佈局、三欄佈局
- java:佈局方法(流佈局)Java
- qt 佈局---表單佈局QT
- CSS佈局之三欄佈局CSS
- CSS佈局 --- 自適應佈局CSS
- CSS佈局 --- 等寬&等高佈局CSS
- CSS 佈局之水平居中佈局CSS
- 彈性佈局(伸縮佈局)
- 浮動佈局 和 flex佈局Flex
- CSS經典佈局——聖盃佈局與雙飛翼佈局CSS
- CSS佈局–聖盃佈局和雙飛翼佈局以及使用Flex實現聖盃佈局CSSFlex
- 網頁佈局------幾種佈局方式網頁
- dispaly的Grid佈局與Flex佈局Flex
- css佈局系列1——盒模型佈局CSS模型
- CSS 三欄佈局之聖盃佈局和雙飛翼佈局CSS
- 聖盃佈局與雙飛翼佈局
- CSS 兩欄佈局和三欄佈局CSS
- 雙飛翼佈局和聖盃佈局
- flex彈性佈局 響應式佈局Flex
- 聖盃佈局和雙飛翼佈局
- 三欄佈局之自適應佈局
- 移動佈局基礎之 流式佈局
- div佈局
- flex 佈局Flex
- 【css】佈局CSS
- 佈局流程
- css 佈局CSS
- Android 佈局Android
- 表格佈局
- layout佈局
- CSS佈局CSS
- grid佈局
- Flex佈局Flex
- Flutter 佈局Flutter
- rem佈局REM
- 佈局總結-水平居中佈局的實現