Table of Contents
1. Fixed-width centered layout
2. Detailed explanation of html structure
3. Why use inner
Home Web Front-end HTML Tutorial Super complete css solution CSS layout_html/css_WEB-ITnose

Super complete css solution CSS layout_html/css_WEB-ITnose

Jun 24, 2016 am 11:45 AM

1. Fixed-width centered layout

First of all, what we discuss here is our commonly used fixed-width centered layout, which should be the most commonly used in actual combat.

Then from the perspective of whether to apply a large background, we can divide it into two types. One is to allow the whole to have a large background, and the other is to allow a full-screen large background to be tiled in the middle and bottom of the head. Next, we discuss three situations with or without sidebars, one is with left or right sidebars, one is without sidebars, and the last one is the situation where both left and right sidebars exist.

The layout scheme we discuss here draws on the theme of drupal, so friends who have learned the cms of drupal should be familiar with it.

2. Detailed explanation of html structure

We use html5 tags, so it is necessary to import html5.js for ie6-8. Then we set all the structures to be included in a div with the class page. Here in the div we also need to add the layout class, aside-left, aside-right, two-sides, and no-side corresponding to the left column respectively. , right column, left and right columns, no sidebar layout. Here we take the two-column layout as an example. It includes a total of five areas, namely header, left, content, right, and footer areas. We add a layer of class in each area. It is an inner div. This inner is mainly used to assist us in layout. By default, our inner has a margin of 10px, which can be overridden according to actual needs.

3. Why use inner

We said that this is used to assist us in layout. Many times when we layout, we have to consider the border and left and right margins, padding, etc. Now we Completely forget about all this and leave it to our inner to do the work. For example, the entire width is 1000px, the left and right sidebars are 200px each, and the content is 600px. Our previous thinking should be that the left and right sides should be 200px, and then the middle content should be 580px (margin is 10px) or 560px (margin is 20px). In this way, if we need to change it to 980px, we have to change several values. Then if we want the left and right sidebars to Add a border and it becomes 202px, or set the left and right width to 198px. This is so confusing. Now that we introduce inner, we can directly calculate the width during layout without considering border, margin, padding, etc., and then re-overwrite the inner in each area, isn't it done? The html codes of the left and right columns are posted here for reference. For details, please see the demo below

1

1 <!DOCTYPE HTML> 2 <html lang="en-US"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>aside left & right demo</title> 6     <link rel="stylesheet" type="text/css" href="css/style.css" media="all" /> 7     <!--[if lt IE 9]> 8     <script src="js/html5.js" type="text/javascript"></script> 9     <![endif]-->10 </head>11 <body>12     <div class="page two-asides">13         <header id="header" class="clearfix">14             <div class="inner">15             </div>16         </header>17 18         <section id="container" class="clearfix">        19             <aside id="aside_left" class="aside">20                 <div class="inner">21                 </div>22             </aside><!--aside_left-->23 24             <section id="main">25                 <div class="inner">26                 </div>        27             </section><!--main-->28 29             <aside id="aside_right" class="aside">30                 <div class="inner">31                 </div>32             </aside><!--aside_right-->    33         </section><!--container-->34 35         <footer id="footer" class="clearfix">36             <div class="inner">37             </div>38         </footer>39     </div>40 </body>41 </html>

Copy after login

If you need to design a full-screen background for the header, container and footer parts, the above method will definitely not work. We can do this Add a layer of wrap outside the three divs, and this wrap will be full screen.

demo: left column layout, right column layout, left and right column layout, no sidebar layout

ps: original text from www.w3cplus.com

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)

Hot Topics

Java Tutorial
1653
14
PHP Tutorial
1251
29
C# Tutorial
1224
24
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