龙空技术网

CSS 全屏布局

寒笛过霜天 228

前言:

此时咱们对“css让图片铺满屏幕”大概比较关怀,你们都想要学习一些“css让图片铺满屏幕”的相关文章。那么小编同时在网络上网罗了一些对于“css让图片铺满屏幕””的相关知识,希望小伙伴们能喜欢,咱们一起来了解一下吧!

什么是全屏布局

全屏布局就是指 HTML 页面铺满整个浏览器窗口, 并且没有滚动条。而且还可以跟随浏览器的大小变化而变化。

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>全屏布局</title><style>html,    body {    margin: 0;    overflow: hidden;}header {    height: 100px;    position: fixed;    top: 0;    left: 0;    right: 0;    background-color: lightgray;}.content {    position: fixed;    left: 0;    right: 0;    top: 100px;    bottom: 100px;    overflow: auto;    background-color: lightblue;}.content .left {    width: 300px;    height: 100%;    position: fixed;    left: 0;    top: 100px;    bottom: 100px;    background-color: lightcoral;}.content .right {    height: 1000px;    margin-left: 300px;    background-color: greenyellow;}footer {    height: 100px;    position: fixed;    bottom: 0;    left: 0;    right: 0;    background-color: lightslategray;}</style></head><body><header></header><div class="content"><div class="left"></div><div class="right"></div></div><footer></footer></body></html>

标签: #css让图片铺满屏幕 #css网页背景颜色怎么设置完整满屏 #css网页背景颜色怎么设置完整满屏显示 #css网页背景颜色怎么设置完整满屏显示出来