【HTML / CSS】使用position自適應佈局
HTML
<div class="wrapper">
<div class="header"></div>
<div class="sidebar"></div>
<div class="content"></div>
</div>
CSS
* {
margin: 0;
padding: 0;
}
body,html {
height: 100%;
overflow: hidden;
}
.header,
.sidebar,
.content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.header {
height:100px;
background: #f08a00;
}
.sidebar {
top: 100px;
width: 20%;
background: #c00000;
}
.content {
top: 100px;
left: 20%;
background: #ccc;
}
相關文章
- CSS佈局 --- 自適應佈局CSS
- css自適應佈局CSS
- 三欄佈局之自適應佈局
- css佈局,左右固定中間自適應實現CSS
- 三列自適應佈局(聖盃佈局)
- 【CSS】三欄/兩欄寬高自適應佈局大全CSS
- 2020-12-17 html、css面試題3: 水平垂直居中,左右固定中間自適應 三欄佈局,靜態佈局、自適應佈局、流式佈局、響應式佈局、彈性佈局,IE中常見的相容性問題,清空陣列的方法HTMLCSS面試題陣列
- CSS Grid 網格佈局實現自適應9宮格CSS
- css--常見左右盒子寬度高度自適應佈局CSS
- Html佈局左右寬度固定中間自適應解決方案HTML
- html+css 佈局篇HTMLCSS
- HTML CSS 浮動佈局⑤HTMLCSS
- 如何實現兩欄佈局,右側自適應?三欄佈局中間自適應呢?
- css經典佈局之左側固定大小右側自動適應CSS
- 兩列自適應佈局方案整理
- 三列寬度自適應佈局
- Web自適應佈局那些事兒Web
- display:table-cell自適應佈局
- QT Creator/QT Designer佈局自適應QT
- easyui-layout佈局高度自適應UI
- vue前端自適應佈局,一步到位所有自適應Vue前端
- 使用 CSS columns 佈局來實現自動分組佈局CSS
- 兩列居中寬度自適應佈局
- 一列居中寬度自適應佈局
- 學習筆記:自適應佈局,多螢幕適配筆記
- 移動端web自適應適配佈局解決方案Web
- flex佈局兩邊固定寬 中間自適應Flex
- 使用flex實現三欄佈局,兩邊固定,中間自適應Flex
- HTML5頁面移動端自適應佈局的實現示例程式碼HTML
- lib-flexible 實現移動端自適應佈局Flex
- css佈局-float佈局CSS
- CSS佈局 --- 居中佈局CSS
- html iframe高度自適應HTML
- Html/CSS07(佈局,引入,表單元素)HTMLCSS
- HTML————14、HTML 佈局HTML
- 網頁佈局自適應的另一種解決方案網頁
- 【css】佈局CSS
- css 佈局CSS
- CSS佈局CSS