Strong css compatibility.

Source: Internet
Author: User

Use div + css! Important tag differences between Firefox and IE6
[Use! Important flag can be different between Firefox and IE6]
Firefox support! Important flag, while IE6 ignores! Important flag, so you can use it! The important tag distinguishes Firefox from IE6.
<Html>
<Body>
<Div style = "color: black! Important; color: white; ">
Black text in firefox and white text in IE6
</Div>
<Div style = "color: white! Important; color: black; ">
White text in firefox and black text in IE6
</Div>
</Body>
</Html>
[Use! Important should be placed before distinguishing Firefox and IE6]
<Html>
<Body>
<Div style = "color: red! Important; color: blue; ">
Use! When important distinguishes firefox from IE6, you must pay attention to the implementation principle and identify Firefox! Important mark, which is equivalent to being upgraded! Important weight. When the style is set to color: red! When important; color: blue;, Firefox considers color: red! Important; has a weight greater than color: blue;, so Firefox recognizes it as color: red ;. IE6 is not recognized! Important flag. When the style is set to color: red! When important; color: blue;, IE6 considers color: red! The weight of important; is the same as that of color: blue. Because color: blue; is positioned back, IE6 recognizes it as color: blue ;.
</Div>
<Div style = "color: red; color: blue! Important; ">
If! Set important to the back. When the style is set to color: red; color: blue! Important;, Firefox considers color: blue! Important has a weight greater than color: red;, so Firefox recognizes it as color: blue ;. IE6 does not recognize this! Important flag. When the style is set to color: red; color: blue! Important;, IE6 considers the weight of color: red and color: blue! Important; has the same weight, because color: blue! Important;, so IE6 is also recognized as color: blue ;. Now ,! Important does not distinguish Firefox from IE6.
</Div>
</Body>
</Html>

Div + css implement vertical center compatible with Firefox and IE6
In Firefox, you can use display: table-cell; vertical-align: middle; to vertically center div, while in IE6, you need to use css in IE6 to vertically center. To implement vertical center compatible with Firefox and IE6, you also need to use it! Important flag. Firefox support! Important flag, while IE6 ignores! Important flag, so you can use it! The important tag distinguishes Firefox from IE6.
[Sample Code]
<Html>
<Body>
<Div style = "display: table-cell; vertical-align: middle; height: 200px; border: 1px solid red;">
<P> vertical center, Firefox only </p>
<P> vertical center, Firefox only </p>
<P> vertical center, Firefox only </p>
</Div>
<Div style = "border: 1px solid red; height: 200px; position: relative;">
<Div style = "position: absolute; top: 50%;">
<Div style = "position: relative; top:-50%;">
<P> vertical center, IE6 only </p>
<P> vertical center, IE6 only </p>
<P> vertical center, IE6 only </p>
</Div>
</Div>
</Div>
<Div style = "border: 1px solid red; height: 200px; position: relative; display: table-cell; vertical-align: middle;">
<Div style = "position: static! Important; position: absolute; top: 50%; ">
<Div style = "position: relative; top:-50%;">
<P> vertical center, Firefox IE6 only </p>
<P> vertical center, Firefox IE6 only </p>
<P> vertical center, Firefox IE6 only </p>
</Div>
</Div>
</Div>
</Body>
</Html>

CSS compatibility with various browsers is already a common issue, and tutorials on the Internet are everywhere. The following content is not too novel. It is a personal summary and I hope it will be helpful for beginners.
I. CSS HACK
The following two methods can solve almost all today's HACK.
1 ,! Important
With IE7! Important Support ,! The important method is only for the HACK of IE6. (note the writing method. Remember to advance the declaration position .)
<Style>
# Wrapper
{
Width: 100px! Important;/* IE7 + FF */
Width: 80px;/* IE6 */
}
</Style>
2, IE6/IE77 for FireFox
* + Html and * html are unique tags of IE, which are not supported by firefox at the moment. * + html is also a unique tag of IE7.
<Style>
# Wrapper
{
# Wrapper {width: 120px;}/* FireFox */
* Html # wrapper {width: 80px;}/* ie6 fixed */
* + Html # wrapper {width: 60px;}/* ie7 fixed, pay attention to the Order */
}
</Style> note:
* + The html HACK for IE7 must ensure that the following statements are made on the top of the HTML:
<! Doctype html public "-// W3C // dtd html 4.01 Transitional // EN" http://www.w3.org/tr/html4/loose.dtd">

2. Universal float Closure
For details about the principle of clear float, refer To [How To Clear Floats Without Structural Markup]
Add the following code to Global CSS and add class = "clearfix" to the div to be closed.
<Style>
/* Clear Fix */. clearfix: after
{
Content :".";
Display: block;
Height: 0;
Clear: both;
Visibility: hidden;
}
. Clearfix
{
Display: inline-block;
}
/* Hide from IE Mac */
. Clearfix {display: block ;}
/* End hide from IE Mac */
/* End of clearfix */
</Style>

Iii. Other compatibility skills
1. Setting padding for div under FF will increase the width and height, but IE will not. (available! Important solution)
2. center problem.
1). vertical center. Set line-height to the same height of the current div, and then use vertical-align: middle. (Note that do not wrap the content .)
2). horizontal center. margin: 0 auto; (of course not omnipotent)
3. To add a style to the content of tag a, set display: block)
4. The difference between FF and IE in understanding BOX leads to the 2px difference. There are also issues such as div set to float and margin doubling under ie.
5. ul labels are listed-style and padding by default under FF. It is recommended to declare them in advance to avoid unnecessary troubles. (commonly seen in navigation labels and content lists)
6. Do not set the height of the external wrapper div. It is best to add overflow: hidden to achieve highly adaptive.
7. about hand-shaped cursor. cursor: pointer. And hand only applies to IE.
1. css style for firefox ie6 ie7
Most of them are used now! Important comes to hack. It can be displayed normally for ie6 and firefox tests,
But ie7! Important can be correctly explained, and the page will not be displayed as required! Find a needle
The good hack Method for IE7 is to use "* + html". Now you can use IE7 to browse it. It should be okay.
You can write a CSS file as follows:
#1 {color: #333;}/* Moz */
* Html #1 {color: #666;}/* IE6 */
* + Html #1 {color: #999;}/* IE7 */
The font color in firefox is displayed as #333, the font color in IE6 is displayed as #666, And the font color in IE7 is displayed as #999. 2. center problem in css layout
The main style definition is as follows:
Body {TEXT-ALIGN: center ;}
# Center {MARGIN-RIGHT: auto; MARGIN-LEFT: auto ;}
Note:
First, define TEXT-ALIGN: center in the parent element. This means that the content in the parent element is centered. for IE, this setting is enough.
However, it cannot be centered in mozilla. The solution is to add "MARGIN-RIGHT: auto; MARGIN-LEFT: auto;" when the sub-element is defined ;"
It should be noted that, if you want to use this method to center the entire page, it is recommended that you do not set it in one DIV. You can split multiple divs in sequence,
You only need to define MARGIN-RIGHT: auto; MARGIN-LEFT: auto; in each split div. 3 different explanations of the Box Model
# Box {width: 600px; // for ie6.0-w \ idth: 500px; // for ff + ie6.0}
# Box {width: 600px! Important // for ff width: 600px; // for ff + ie6.0 width/**/: 500px; // for ie6.0 -}
4. Double distance of floating ie
# Box {float: left; width: 100px; margin: 0 0 0 100px; // in this case, IE will generate a PX distance display: inline; // ignore floating}
Here, let's take a closer look at the block and inline elements. The characteristics of the Block elements are that they can always start on a new line, and the height, width, row height, and margins can be controlled (block elements ); the characteristics of the Inline element are: on the same line as other elements ,... Uncontrollable (embedded element );
# Box {display: block; // The embedded element can be simulated as the block element display: inline; // the result of the same row arrangement is dilay: table;
IE does not recognize the min-definition, but in fact it treats normal width and height as min conditions. In this case, the problem is big. If only the width and height are used,
In a normal browser, these two values will not change. If only min-width and min-height are used, the width and height under IE are not set at all.
For example, to set a background image, the width is important. To solve this problem, you can:
# Box {width: 80px; height: 35px;} html> body # box {width: auto; height: auto; min-width: 80px; min-height: 35px ;}
6. Minimum page width
Min-width is a very convenient CSS command, which can specify that the element is at least or less than a certain width, so as to ensure correct layout. But IE does not recognize this,
In fact, it uses width as the minimum width. To enable this command to be used on IE, you can place <div> under the <body> label and specify a class for div:
Then CSS is designed like this:
# Container {min-width: 600px; width: expression (document. body. clientWidth <600?
"600px": "auto ");}
The first min-width is normal, but the width of line 2nd uses Javascript, which is recognized only by IE, which will make your HTML document not formal. It actually achieves the minimum width through Javascript judgment.
7. Clear floating
. Hackbox {display: table; // display the object as a block element-Level table} Or. hackbox {clear: both ;}
Or add: after (pseudo object) to set the content after the object, which is usually used with content. IE does not support this pseudo object, not supported by Ie browsers,
This does not affect IE/WIN browsers. This is the most troublesome ...... # Box: after {content: "."; display: block; height: 0; clear: both; visibility: hidden ;}
8 DIV floating IE text produces 3 pixel bug
The left object floats, and the left margin of the outer patch is used to locate the patch on the right. The text in the right object is 3 px away from the left.

# Box {float: left; width: 800px; }# left {float: left; width: 50% ;}# right {width: 50% ;} * html # left {margin-right:-3px; // This sentence is critical}
HTML code <div id = "box"> <div id = "left"> </div> <div id = "right"> </div>
9 attribute selector (this is incompatible and is a bug in hiding css)
P [id] {} div [id] {}
This is hidden for versions earlier than IE6.0 and IE6.0. It is used by FF and OPera.
There is a difference between the property selector and the Child selector. The range of the Child selector is reduced in the form, and the range of the property selector is relatively large, such as in p [id, all p tags have IDs in the same style.
10 Internet Explorer
When the div application is complicated, there are some links in each column. When the DIV application is complicated, it is prone to the "hide and seek" issue.
Some content cannot be displayed. When you select this area, the content is displayed on the page.
Solution: Use the line-height attribute for # layout or use fixed height and width for # layout. The page structure should be as simple as possible.
11 highly unsuitable
The height mismatch means that the height of the outer layer cannot be automatically adjusted when the height of the inner layer object changes, especially when the inner layer object uses
Margin or paddign.
Example:
<Div id = "box">
<P> content in the p object </p>
</Div>
CSS: # box {background-color: # eee ;}
# Box p {margin-top: 20px; margin-bottom: 20px; text-align: center ;}
Solution: Add two empty div objects to the upper and lower sides of the P object. CSS code:. 1 {height: 0px; overflow: hidden;} or add the border attribute to the DIV.

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.