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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

HTML, CSS, and JavaScript: Essential Tools for Web Developers HTML, CSS, and JavaScript: Essential Tools for Web Developers Apr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

See all articles