Markup language - for

Markup language - for
Click here to return to the 123WORDPRESS.COM HTML Tutorial section. To view the CSS tutorial, please click here.
Above: Markup language – image replacement . Chapter 15 Specifying styles for <body> One of the benefits of separating content from display is flexibility. By controlling the layout of a website with CSS (the method used in Chapter 12), you can control the design elements of the entire website. By changing a few rules, you can dramatically update thousands of pages at once.
One of the demonstrations of the convenience of using CSS to control layout is to specify styles for <body>. By adding a class or id to the <body> tag, you can customize any tag on the page. There is no need to worry about repeated definitions.
In this chapter, we will explore how to use the same markup structure to switch between two different layout configurations by adding classes to the <body> tag. Two-column or three-column layouts are like when we redesigned the website for Fast Company using CSS layout techniques. One of the challenges is that although all pages share the same navigation and footer area, we also need to create two different layouts.
The first layout is the "index page (home page)", see Figure 15-1. This is a page with navigation functions, allowing users to continue to drill down into the directory structure of the website. For these pages, we decided to use a three-column layout.

Figure 15-1 Fast Company's three-column "index page" demonstrates the second page layout, which is the "content page" Figure 15-2. Any page that feels like a destination uses this layout. To improve readability, we decided to omit the left column and leave two columns, that is, one large column for content and the other for advertising.

Figure 15-2 Fast Company's two-column "content page" example.
The reason I explain this is not to prove that we have solved a great mystery of page layout, but to demonstrate that adding classes to the <body> tag can adjust the column width and place or omit the third column according to the page form. When creating such an effect, no rules are repeated at all, and no additional style sheets are introduced. Markup and style structure After starting to describe the markup structure shared by the two pages, these descriptions will begin to make sense. In order to achieve a column layout, the absolute positioning method mentioned in Chapter 12 will be used. The simplified markup structure of the content page looks like this:

<div id="header">
...header info here...
</div>
<div id="content">
...content here...
</div>
<div id="right">
...right column info...
</div>
<div id="footer">
...footer info...
</div>

Use CSS rules to add a right outer patch to #content and #footer that is large enough to fit into #right using absolute positioning. In this example, 190 pixels is just enough.

#content, #footer {
margin: 10px 190px 10px 10px;
}
Index Page For the index page, the markup structure is exactly the same, so there is no need to duplicate the shared CSS rules, but an extra <div> is added to the left of #content as a third column (#left).

<div id="header">
...header info here...
</div>
<div id="content">
...content here...
</div>
<div id="left">
...left column info...
</div>
<div id="right">
...right column info...
</div>
<div id="footer">
...footer info...
</div>

For this three-column structure, not only should we set the right outer patch for #content and #footer to accommodate the right column, but we should also set the left outer patch to accommodate the newly added left column.
But the left outer patch has been set to 10 pixels to match the default content page layout with only two columns.
Wow, we are stuck, how do we proceed? Please continue reading.
Previous Page 1 2 3 Next Page Read More

<<:  Detailed explanation of the difference between JavaScript onclick and click

>>:  TCP performance tuning implementation principle and process analysis

Recommend

MySQL performance optimization index pushdown

Index condition pushdown (ICP) is introduced in M...

How to backup MySQL regularly and upload it to Qiniu

In most application scenarios, we need to back up...

How to implement two-way binding function in vue.js with pure JS

Table of contents First, let's talk about the...

Should I use distinct or group by to remove duplicates in MySQL?

Preface About the performance comparison between ...

Should I abandon JQuery?

Table of contents Preface What to use if not jQue...

Interactive experience trends that will become mainstream in 2015-2016

The most important interactive design article in ...

Practice using Golang to play with Docker API

Table of contents Installing the SDK Managing loc...

How to configure mysql5.6 to support IPV6 connection in Linux environment

Introduction: This article mainly introduces how ...

Discussion on image path issues in css (same package/different package)

In CSS files, sometimes you need to use background...

Realizing provincial and municipal linkage effects based on JavaScript

This article shares the specific code of JavaScri...

Create a code example of zabbix monitoring system based on Dockerfile

Use the for loop to import the zabbix image into ...

Nginx reverse proxy and load balancing practice

Reverse Proxy Reverse proxy refers to receiving t...

Vue implements small form validation function

This article example shares the specific code of ...

Process parsing of reserved word instructions in Dockerfile

Table of contents 1. What is Dockerfile? 2. Analy...