search
HomeWeb Front-endHTML TutorialCSS全屏布局的5种方式_html/css_WEB-ITnose

× 目录 [1]float [2]inline-block [3]table [4]absolute [5]flex [6]总结

前面的话

  全屏布局在实际工作中是很常用的,比如管理系统、监控平台等。本文将介绍关于全屏布局的5种思路

 

思路一: float

【1】float + calc

  通过calc()函数计算出.middle元素的高度,并设置子元素高度为100%

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.middle{    overflow: hidden;    height: calc(100% - 100px);}.left{    float: left;    width: 100px;    margin-right: 20px;    height: 100%;}.right{    overflow: auto;    height: 100%;}.right-in{    height: 1000px;}.top,.bottom{height:50px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>      <div class="middle" style="background-color: pink;">        <div class="left" style="background-color: orange;">            <p>left</p>        </div>        <div class="right" style="background-color: lightsalmon;">            <div class="right-in">                <p>right</p>            </div>        </div>    </div>              <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

【2】float + absolute + (fix)

  通过增加结构来提高兼容性,.middle元素设置100%的高度,.top和.bottom设置absolute覆盖在.middle上

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.top,.bottom{    position: absolute;    height:50px;    left: 0;    right: 0;}.top{top: 0;}.bottom{bottom: 0;}.middleWrap{    height: 100%;    overflow: hidden;}.middle{    overflow: hidden;    height: 100%;    margin: 50px 0;}.left{    float: left;    width: 100px;    margin-right: 20px;    height: 100%;}.right{    overflow: auto;    height: 100%;}.right-in{    height: 1000px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>      <div class="middleWrap">        <div class="middle" style="background-color: pink;">            <div class="left" style="background-color: orange;">                <p>left</p>            </div>            <div class="right" style="background-color: lightsalmon;">                <div class="right-in">                    <p>right</p>                </div>            </div>        </div>            </div>     <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

 

思路二: inline-block

【1】inline-block + calc

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.middle{    height: calc(100% - 100px);    font-size: 0;}.left,.right{    display: inline-block;    vertical-align: top;    font-size: 16px;}.left{    width: 100px;    margin-right: 20px;    height: 100%;}.right{    width: calc(100% - 120px);    height: 100%;    overflow: auto;}.right-in{    height: 1000px;}.top,.bottom{height: 50px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>      <div class="middle" style="background-color: pink;">        <div class="left" style="background-color: orange;">            <p>left</p>        </div>        <div class="right" style="background-color: lightsalmon;">            <div class="right-in">                <p>right</p>            </div>        </div>    </div>            <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

【2】inline-block + absolute + (fix)

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.top,.bottom{    position: absolute;    left: 0;    right: 0;    height: 50px;}.top{top: 0;}.bottom{bottom: 0;}.middleWrap{    height: 100%;    font-size: 0;    overflow: hidden;}.middle{    position: relative;    height: 100%;    margin: 50px 0;    overflow: hidden;}.left,.rightWrap{    display: inline-block;    vertical-align: top;    font-size: 16px;}.left{    position: absolute;    width: 100px;    margin-right: 20px;    height: 100%;}.rightWrap{    width: 100%;    height: 100%;}.right{    height: 100%;    margin-left: 120px;    overflow: auto;}.right-in{    height: 1000px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>      <div class="middleWrap">        <div class="middle" style="background-color: pink;">            <div class="left" style="background-color: orange;">                <p>left</p>            </div>            <div class="rightWrap">                <div class="right" style="background-color: lightsalmon;">                    <div class="right-in">                        <p>right</p>                    </div>                </div>                            </div>        </div>             </div>    <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

 

思路三: table

  水平方向子元素的间距可以用border实现。所有浏览器都不支持给table-cell元素设置overflow属性。firefox和IE11浏览器不支持给table-cell元素的设置100%高度的子元素设置overflow属性

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.top,.bottom{    position: absolute;    width: 100%;    height: 50px;}.bottom{bottom: 0;}.middleWrap{    height: 100%;    overflow: hidden;}.middle{    width: 100%;    height: 100%;    display: table;        margin: 50px 0;    table-layout: fixed;}.left{    display: table-cell;    width: 120px;    border-right: 20px solid lightgray;}.rightWrap{    display: table-cell;    height: 100%;}.right{    height: 100%;    overflow: auto;}.right-in{    height: 1000px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>     <div class="middleWrap">        <div class="middle" style="background-color: pink;">            <div class="left" style="background-color: orange;">                <p>left</p>            </div>                 <div class="rightWrap">                <div class="right" style="background-color: lightsalmon;">                    <div class="right-in">                        <p>right</p>                    </div>                            </div>                                </div>           </div>             </div>        <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

 

思路四: absolute

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.top,.middle,.bottom{    position: absolute;    left: 0;    right: 0;}.top{    top: 0;    height: 50px;}.bottom{    bottom: 0;    height: 50px;}.middle{    top: 50px;    bottom: 50px;}.left,.right{    position: absolute;    top: 0;    bottom: 0;}.left{    width:100px;}.right{    left: 120px;    right: 0;    overflow: auto;}.right-in{    height: 1000px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>     <div class="middle" style="background-color: pink;">        <div class="left" style="background-color: orange;">            <p>left</p>        </div>             <div class="right" style="background-color: lightsalmon;">            <div class="right-in">                <p>right</p>            </div>                    </div>                        </div>                  <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

 

思路五: flex

  flex常用于小范围的布局,使用全屏布局时会因为性能问题,出现卡顿现象。如果要使用全屏自适应布局,则只有flex才能达到效果

<style>body,p{margin: 0;}body,html,.parent{height: 100%;}.parent{    display: flex;    flex-direction: column;}.top,.bottom{    height: 50px;}.middle{    display: flex;    flex: 1;}.left{    width: 100px;    margin-right: 20px;}.right{    flex: 1;    overflow: auto;}.right-in{    height: 1000px;}</style>

<div class="parent" id="parent" style="background-color: lightgrey;">    <div class="top" style="background-color: lightblue;">        <p>top</p>    </div>     <div class="middle" style="background-color: pink;">        <div class="left" style="background-color: orange;">            <p>left</p>        </div>             <div class="right" style="background-color: lightsalmon;">            <div class="right-in">                <p>right</p>            </div>                    </div>                        </div>                  <div class="bottom" style="background-color: lightgreen;">        <p>bottom</p>    </div>        </div>

 

总结

  全屏布局实际上就是两列或三列自适应布局的扩展形式。由于实现的是全屏效果,高度实际上是固定的,所以思路并没有等高布局局限。水平方向元素之间的间距根据实际情况使用margin、padding、border都可以实现

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft