search
HomeWeb Front-endCSS TutorialCSS What is the Holy Grail Layout?

CSS What is the Holy Grail Layout?

Nov 17, 2020 pm 05:30 PM
cssholy grail layout

In CSS, the Holy Grail layout refers to a three-column layout in which the width of the boxes on both sides is fixed and the middle box is adaptive. Among them, the middle column is placed in front of the document flow to ensure that it is rendered first; all three columns use "float:left" "Float, and match the left and right properties.

CSS What is the Holy Grail Layout?

Everyone must be familiar with the two classic layouts of the front end - the Holy Grail layout and the double flying wing layout, because it can not only show that you understand the HTML structure but also can Show your mastery of DIV CSS layout.

In fact, the Holy Grail layout is actually the same thing as the double flying wing layout. They all implement a three-column layout, with the boxes on both sides having a fixed width and the middle box adapting, which is what we often call a solid layout. The effect they achieve is the same, the difference lies in the idea of ​​their implementation.

You can find by zooming the page that as the width of the page changes, the three-column layout is the middle box that is rendered first, and the boxes on both sides are fixed. Even if the page width becomes smaller, it will not affect our Browse. Note: When you zoom the page, the width cannot be less than 700PX. For safety reasons, it is best to add a minimum width to the body!
If you have such a little understanding, let’s take a look. Implementation of the Holy Grail Layout:

Note: You can add the reset part of the code by yourself

1. HTML structure:

<header>
    <h4 id="Header内容区">Header内容区</h4>
</header>
<div class="container">
    <div class="middle">
        <h4 id="中间弹性区">中间弹性区</h4>
    </div>
    <div class="left">
        <h4 id="左边栏">左边栏</h4>
    </div>
    <div class="right">
        <h4 id="右边栏">右边栏</h4>
    </div>
</div>
<footer>
    <h4 id="Footer内容区">Footer内容区</h4>
</footer>

Some people may be confused as to why the main part in the middle is Write it at the front. Because the middle box should be rendered first~ and set its adaptive value, that is, width: 100%.

2. css style:

header{
    width: 100%;    height: 40px;
    background-color: #8ecfd4;
}
.container{
    overflow:hidden;
}
.middle{
    width: 100%;
    background-color: #f7f537;
    float:left;
}
.left{ 
    width: 200px;
    background-color: #37f7c8;
    float:left;
}
.right{
    width: 200px;
    background-color: #eb6100;
    float:left;
}
footer{
    width: 100%; 
    height: 30px;
    background-color: #8ecfd4;
}

The rendering at this time:

At this time, the three columns in the middle are not in one line It shows that the reason is also very clear. The three columns are all floating, but the width of the middle column is set to 100%, and then the left and right columns cannot support the new line display.

What we need to do now is to move the left column to the left and the right column to the right. Then we need negative margin of css.

3. Use negative margin layout

Let the box on the left go up
.left{
    margin-left:-100%;
}

Let the box on the right go up

.right {
    margin-left:-200px;
}

This The renderings

Implementing the solid layout

Although it seems that the layout we want has been achieved, when filling in the content in the middle, we Problems will still be found. In this step, we also give the middle main part a height to facilitate visual effects.

.middle{
    width: 100%;
    height: 200px; 
    background-color: #f7f537;
    float:left;
}
.left{    
    width: 200px;
    height: 200px;
    background-color: #37f7c8;
    float:left;
}
.right{
    width: 200px;
    height: 200px;
    background-color: #eb6100;
    float:left;
}

As can be seen from the above renderings, the content of the middle column is obscured by the parts on both sides. This is not what we want, so our work is still Gotta continue.

4. Let the middle adaptive box be displayed safely (use the parent element to set the value of the left and right margins, and squeeze the three sub-boxes of the parent into the middle.)

.container{ 
    padding: 0 200px;
}

Here 200px is the width of the left and right boxes.

The effect is as follows:

Use the parent’s padding to squeeze the box into the middle

We can see that the left and right The padding is there, but the content in the middle box is still suppressed.

5. Separate the left and right sides (add a positioning to the left and right boxes. After adding the positioning, the left and right values ​​​​can be set for the left and right boxes.)

.left{ 
    position: relative; 
    left: -200px;
}
.right{
    position: relative;
    right: -200px;
}

See the final renderings

Now our Holy Grail layout is OK! The effect we want is achieved. The left and right boxes are fixed, the middle box is adaptive, and the content of the middle box is not affected at all. I hope everyone has to help.

For more programming-related knowledge, please visit: Programming Learning! !

The above is the detailed content of CSS What is the Holy Grail Layout?. For more information, please follow other related articles on the PHP Chinese website!

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
Draggin' and Droppin' in ReactDraggin' and Droppin' in ReactApr 17, 2025 am 11:52 AM

The React ecosystem offers us a lot of libraries that all are focused on the interaction of drag and drop. We have react-dnd, react-beautiful-dnd,

Fast SoftwareFast SoftwareApr 17, 2025 am 11:49 AM

There have been some wonderfully interconnected things about fast software lately.

Nested Gradients with background-clipNested Gradients with background-clipApr 17, 2025 am 11:47 AM

I can't say I use background-clip all that often. I'd wager it's hardly ever used in day-to-day CSS work. But I was reminded of it in a post by Stefan Judis,

Using requestAnimationFrame with React HooksUsing requestAnimationFrame with React HooksApr 17, 2025 am 11:46 AM

Animating with requestAnimationFrame should be easy, but if you haven’t read React’s documentation thoroughly then you will probably run into a few things

Need to scroll to the top of the page?Need to scroll to the top of the page?Apr 17, 2025 am 11:45 AM

Perhaps the easiest way to offer that to the user is a link that targets an ID on the element. So like...

The Best (GraphQL) API is One You WriteThe Best (GraphQL) API is One You WriteApr 17, 2025 am 11:36 AM

Listen, I am no GraphQL expert but I do enjoy working with it. The way it exposes data to me as a front-end developer is pretty cool. It's like a menu of

Weekly Platform News: Text Spacing Bookmarklet, Top-Level Await, New AMP Loading IndicatorWeekly Platform News: Text Spacing Bookmarklet, Top-Level Await, New AMP Loading IndicatorApr 17, 2025 am 11:26 AM

In this week's roundup, a handy bookmarklet for inspecting typography, using await to tinker with how JavaScript modules import one another, plus Facebook's

Various Methods for Expanding a Box While Preserving the Border RadiusVarious Methods for Expanding a Box While Preserving the Border RadiusApr 17, 2025 am 11:19 AM

I've recently noticed an interesting change on CodePen: on hovering the pens on the homepage, there's a rectangle with rounded corners expanding in the back.

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.