Table of Contents
前面的话
思路一: float
思路二: inline-block
思路三: table
思路四: absolute
思路五: flex
总结
Home Web Front-end HTML Tutorial CSS全屏布局的5种方式_html/css_WEB-ITnose

CSS全屏布局的5种方式_html/css_WEB-ITnose

Jun 24, 2016 am 11:19 AM

× 目录 [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>
Copy after login

<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>
Copy after login

【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>
Copy after login

<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>
Copy after login

思路二: 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>
Copy after login

<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>
Copy after login

【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>
Copy after login

<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>
Copy after login

思路三: 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>
Copy after login

<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>
Copy after login

思路四: 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>
Copy after login

<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>
Copy after login
Copy after login

思路五: 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>
Copy after login

<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>
Copy after login
Copy after login

 

总结

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

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

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 &lt;datalist&gt; 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 &lt;iframe&gt; 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 &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; 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 &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; 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 &lt;time&gt; 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