Easy to learn div tutorial (div+css layout)

Source: Internet
Author: User
Tags add define header html page resource unique id css zen garden
css| tutorial Are you learning CSS layouts? Are you still unable to fully master the pure CSS layout? There are usually two situations that hinder your study:

The first possibility is that you have not yet understood the CSS Process page principle. Before you consider the overall performance of your page, you should consider the semantics and structure of the content before adding CSS to the semantics and structure. This article will show you how to structure HTML.

Another reason is that you are too familiar with the performance layer properties (such as: cellpadding, hspace, Align=left, etc.) at your wits end, do not know what to translate to the corresponding CSS statements. When you've solved the first problem, and you know how to structure your HTML, I'll give you a list of the original performance attributes in place of CSS.

Structured HTML
When we first study the Web page, we always think about how to design, consider the pictures, fonts, colors, and layout options. Then we use Photoshop or fireworks to draw and cut into small pictures. Finally, all the design restores are displayed on the page by editing the HTML.

If you want your HTML page to be in CSS layout (css-friendly), you need to go back and think about the semantics and structure of your page's content first, regardless of the appearance.

Appearance is not the most important. A well-formed HTML page can appear with any appearance, CSS Zen Garden is a typical example. CSS Zen Garden helps us finally realize the power of CSS.

HTML is not only read on the computer screen. The images you have carefully designed with Photoshop may not be visible on PDAs, mobile phones and screen readers. But a well-formed HTML page can be defined by different CSS definitions, displayed anywhere, on any network device.

Start thinking
The first thing to learn is what structure is, some writers also call it semantics. The term means that you need to analyze your content block and the purpose of each piece of content service, and then build the corresponding HTML structure based on these content objectives.

If you sit down to analyze and plan your page structure carefully, you may get a few blocks like this:

Flag and Site name
Home Page Content
Site navigation (Main menu)
Sub Menu
Search box
Ribbon (e.g. shopping cart, cashier)
Footer (copyright and related legal notices)
We usually use DIV elements to define these structures, like this:















This is not a layout, it is a structure. This is a semantic description of the content block. When you understand your structure, you can add the corresponding ID to the div. The div container can contain any content blocks, or it can nest another div. A content block can contain arbitrary HTML elements---headings, paragraphs, pictures, tables, lists, and so on.

According to the above, you already know how to structure HTML, now you can make layout and style definitions. Each block of content can be placed anywhere on the page, specifying the color, font, border, background, and alignment properties of the block, and so on.

Using selectors is a wonderful thing.
The name of the ID is the means to control a block of content, by putting a div on the content block and adding a unique ID, you can use a CSS selector to precisely define the appearance of each page element, including headings, lists, pictures, links, paragraphs, and so on. For example, if you write a CSS rule for #header, it can be completely different from the #content picture rules.

Another example is that you can define the link styles in different blocks of content with different rules. Like this: #globalnav a:link or #subnav a:link or #content a:link. You can also define different styles for the same elements in various blocks of content. For example, the styles of p in #content and #footer are defined by #content p and #footer p respectively. Structurally, your page is made up of pictures, links, lists, paragraphs, and so on, and these elements don't have any effect on what network devices (PDAs or mobile phones or network TVs) are displayed, and they can be defined as any appearance of appearances.

A carefully structured HTML page is very simple, and each element is used for structural purposes. When you want to indent a paragraph, you don't need to use the blockquote tag, just use the P tag, and add a CSS margin rule to p to achieve indentation. P is a structured label, margin is the performance attribute, the former belongs to HTML, the latter belongs to CSS. (This is the separation of the structure from the performance phase.)

Well structured HTML pages have almost no label for performance attributes. The code is very clean and concise. For example, the original code
Practice it yourself. Structured
The above is just the most basic structure, in practical applications, you can adjust the content block as needed. There is often a case of div nesting, and you will see that there are other layers in the container layer, similar in structure:





    a list






    another list






Nested div elements allow you to define more CSS rules to control performance, such as: You can give #navcontainer a rule to get the list to the right, and then give #globalnav a rule to leave the list to the left, and give #subnav's list another completely different performance.

Replacing traditional methods with CSS
The following list will help you replace the traditional method with CSS:

HTML attributes and corresponding CSS methods
HTML Properties CSS Method description
Align=left

Align=right Float:left;

Float:right; Use CSS to float any element: picture, paragraph, Div, title, table, list, etc.

When you use the Float property, you must define a width for this floating element.

Marginwidth=0 leftmargin=0 marginheight=0 topmargin=0 margin:0; With CSS, margin can be set on any element, not just the BODY element. More importantly, you can specify the margin values for the top, right, bottom, and left of the elements.

vlink= #333399 alink= #000000 link= #3333FF a:link #3ff;

a:visited: #339;

A:hover: #999;

A:active: #00f;
In HTML, the color of a link is defined as a property value of the body. The entire page has the same link style. With CSS selectors, the link styles for different parts of the page can vary.

bgcolor= #FFFFFF Background-color: #fff; In CSS, any element can define the background color, not only the body and table elements.

bordercolor= #FFFFFF Border-color: #fff; Any element can be set to a border (Boeder), you can define top, right, bottom, and left

Border=3

Cellspacing=3 border-width:3px; With CSS, you can define a table's border as a uniform style, or you can define the color, size, and style of top, right, bottom and left borders, respectively.

You can use table, TD or th these selectors.

If you need to set no border effect, you can use the CSS definition: border-collapse:collapse;

<BR clear=left>

<BR clear=right>

<BR clear=all>
Clear:left;

Clear:right;

Clear:both;
Many 2-column or 3-column layouts are positioned using the float property. If you have a background color or background image defined in the floating layer, you can use the clear property.

Cellpadding=3

Vspace=3

Hspace=3 padding:3px; With CSS, any element can be set padding properties, the same, padding can be set top, right, bottom and left. The padding is transparent.

Align=center Text-align:center;

Margin-right:auto; Margin-left:auto;
Text-align only applies to text.

Block-level venom such as div,p can be passed through the Margin-right:auto; and Margin-left:auto; to center horizontally


Some unfortunate skills and working environment
Because browsers are not perfect for CSS support, we sometimes have to take some skill (hacks) or create an environment (workarounds) to make the CSS implement the same effect as traditional methods. For example, block-level elements sometimes need to use the techniques of horizontal centering, box model bugs and so on. All of these tips are detailed in the Molly Holzschlag article "Integrated Web design:strategies for long-term CSS Hack".

Another resource site for CSS tips is the "Position is Everything" of Big John and Holly Bergevin.

Understanding floating Behavior
Eric Meyer's "containing floats" will help you learn how to use the Float property layout. Float elements sometimes need to be cleared (clear), and reading "How to clear floats without structural Markup" will be very helpful.

More help
The existing "CSS Discussion" list is a good resource for collecting information about a Wikia discussion group, including CSS layout summaries (css-discuss.incutio.com/?page=csslayouts), CSS Tips Summary ( Css-discuss.incutio.com/?page=csshack) and more

You can now write
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.