Padding tags are compatible in IE7, IE6, and Firefox

Source: Internet
Author: User
Tags visibility wrapper

*+html and *html is the unique label of IE, Firefox is not supported. And *+html is IE7 unique label. So to solve the padding compatibility problem depends on the label mentioned above.

Take Sccas-site as an example, the left-hand navigation bar produces IE6, IE7, and FF browser incompatibilities on padding, and the code is modified as follows:

The code is as follows Copy Code

#menu7 Li a {
height:25px;
/*border-right:1px solid #666666;
Text-decoration:none;
?? margin:0px 0px 0px-40px!important (Firefox is recognizable to make navigation bar the same overall position as IE)
?? margin:0px 0px 0px 0px;
}

#menu7 li a:link{????/* To identify this link in Firefox css*/
??????? Float:none;
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 20px;
}

*html #menu7 li a:link{?????/* Identify this link in IE6 css*/
??????? Float:none;
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 10px;
}

*+html #menu7 li a:link{????/* Identify this link in IE7 css*/
Float:none;
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 60px;
}

#menu7 Li a:visited {
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 20px;
}

*html #menu7 Li a:visited {
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 10px;
}

*+html #menu7 Li a:visited {
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 60px;
}

#menu7 Li a:hover{
Color: #FF0000;
/*text-decoration:underline;*/
Background-color: #E6E6E6;
Font-weight:bold;
border-top:1px solid #fff;
/*border-left:1px solid #333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 20px;
}

*html #menu7 Li a:hover{
Color: #FF0000;
/*text-decoration:underline;*/
Background-color: #E6E6E6;
Font-weight:bold;
border-top:1px solid #fff;
/*border-left:1px solid #333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 10px;
}

*+html #menu7 Li a:hover{
Color: #FF0000;
/*text-decoration:underline;*/
Background-color: #E6E6E6;
Font-weight:bold;
border-top:1px solid #fff;
/*border-left:1px solid #333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 60px;
}

Note that if more than one CSS attribute is tied together, you need to add the identification label separately. As follows:

The code is as follows Copy Code

#menuleft Li A:link, #menuleft Li a:visited {
Float:none;
Text-align:left;
Color: #000;
Background:url (.. /images/arrow3.gif) no-repeat 90% 50%;
Background-color: #CFF3F6;
padding-top:8px;
padding-left:20px;
}
*html #menuleft Li A:link, *html #menuleft li a:visited {
Float:none;
Text-align:left;
Color: #000;
Background:url (.. /images/arrow3.gif) no-repeat 90% 50%;
Background-color: #CFF3F6;
padding-top:8px;
padding-left:10px;
}
*+html #menuleft Li A:link, *+html #menuleft li a:visited {
Float:none;
Text-align:left;
Color: #000;
Background:url (.. /images/arrow3.gif) no-repeat 90% 50%;
Background-color: #CFF3F6;
padding-top:8px;
padding-left:50px;
}

Note: Adding * to the property, *+ does not work. The following are the wrong:

The code is as follows Copy Code

#menu7 Li a:visited {
Color: #000;
Display:block;
Font-weight:bold;
Background-color: #CCCCCC;
border-top:1px solid #fff;
/*border-left:1px solid #333333;
border-bottom:1px solid #333;
border-right:1px solid #333;
padding:8px 0 0 20px;

*padding:8px 0 0 10px;

*+padding:8px 0 0 60px;
}

Here are some tips for copying:

First, CSS HACK
The following two methods can solve almost all hack today.

1,!important
With the support of IE7 to!important, the!important method is now targeted only at IE6 hack. (Note the wording. Remember that the claim position needs to be advanced.)

The code is as follows Copy Code
<style>
#wrapper
{
Width:100px!important; * IE7+FF * *
??? width:80px; * IE6 * *
}
</style>

2, Ie6/ie7 to Firefox
*+html and *html is the unique label of IE, Firefox is not supported. And *+html is IE7 unique label.

The code is as follows Copy Code
<style>
#wrapper
{
#wrapper {width:120px}/* FireFox/*
??? *html #wrapper {width:80px}////* IE6 fixed */
??? *+html #wrapper {width:60px}//* IE7 fixed, note order * *
}
</style>

Note: *+html to IE7 hack must ensure that the top of the HTML has the following declaration:
<! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" "HTTP://WWW.W3.ORG/TR/HTML4/LOOSE.DTD" >

Second, universal float closure (very important!)
The principle of clear float can be found in [how to clear floats without structural Markup]
Add the following code to the global CSS, and give the div that needs to be closed.

  code is as follows copy code
<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>

Third, other compatibility skills (again???
1, under the FF to the DIV set padding will cause the width and height increase, but IE will not. (Available!important solution)
2, center problem.
1). vertically centered. Set the line-height to the same height as the current Div, and then pass the Vertical-align:middle. (Note that the content is not wrapped.)
2). Horizontally centered. margin:0 Auto; (certainly not omnipotent)
3, if you need to add a style to the contents of a label, you need to set display:block (common to navigation tags)
4, FF and IE on the BOX understanding of the difference between the 2px is also set for float div in IE under the margin doubling and so on.
5, the UL label below the FF default has List-style and padding. It is best to make a statement beforehand to avoid unnecessary trouble. (Common in navigation labels and content lists)
6, as an external wrapper div do not set dead height, preferably plus overflow:hidden. To achieve a high degree of adaptability.
7, about the hand-shaped cursor. Cursor:pointer. And hand only applies to IE.

1 CSS styles for Firefox IE6 IE7
Now most of them are using!important to hack, and for IE6 and Firefox tests to be displayed properly,
But IE7 to!important can correctly explain, will cause the page does not appear according to the request! Find a needle
To IE7 good hack way is to use "*+html", now with IE7 browsing, should have no problem.
Now write a CSS can do this:

The code is as follows Copy Code
#1 {color: #333;}/* Moz/*
* HTML #1 {color: #666}/* IE6 * *
*+html #1 {color: #999;}/* IE7 * *

Then in Firefox font color display for #333,ie6 under the font color display for #666,ie7 under the font color display as #999.

2 centering problems in CSS layouts
The main style definitions are as follows:

The code is as follows Copy Code
body {text-align:center;}
#center {Margin-right:auto; Margin-left:auto; }

Description
First, the parent element defines text-align:center, which means that the content within the parent element is centered, and for IE this setting is OK.
But you can't center in Mozilla. The solution is to add "Margin-right:auto" when the child element definition is set; Margin-left:auto; ”
To be sure, if you want to use this method to make the entire page centered, it is recommended not to be nested in a div, you can split the multiple div in turn,
Just define Margin-right:auto in each div that is pulled out; Margin-left:auto; It's OK.

3 box models differ explained.

The code is as follows Copy Code

#box {width:600px;//for ie6.0-width: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 generated by the floating IE

#box {float:left; width:100px; margin:0 0 0 100px; In this case, IE will produce 200px distance display:inline; Make floating Ignore}
Let's go over the block,inline. Two elements, the block element is characterized by: always start on a new line, height, width, row height, margin can be controlled (blocks elements); Inline element is characterized by: and other elements on the same line,... Not controllable (inline element);

#box {display:block//can simulate an inline element as a block element display:inline//effect diplay:table the same row arrangement;

5 ie with the width and height of the problem
IE does not recognize the definition of min-, but in fact it treats the normal width and height as having min. This is a big problem, if you only use width and height,
In the normal browser, these two values will not change, if only with Min-width and min-height, ie below is not set width and height.
For example, to set the background picture, this width is more important. To solve this problem, you can do this:

The code is as follows Copy Code
#box {width:80px; height:35px;} Html>body #box {width:auto; height:auto; min-width:80px; min-height:35px;}

6 minimum width of the page
Min-width is a handy CSS command that specifies that the element should be minimal or less than a certain width, so that the layout will always be correct. But IE doesn't recognize this,
And it actually turns the width to the minimum. To make this command available on IE, you can put a <div> under the <body> tab, and then assign a class to the DIV:
Then CSS is designed like this:

The code is as follows Copy Code
#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 only IE recognizes, which also makes your HTML document less formal. It actually achieves the minimum width through JavaScript's judgment.

7 Clear Floating
. hackbox{display:table;//Display the object as a table at the block element level} or. hackbox{Clear:both;
or add: After (Pseudo object), set in the object after the occurrence of content, usually with content with use, IE does not support this pseudo object, not IE browser support,
So it doesn't affect the Ie/win browser. This is the most troublesome ... #box: after{content: "."; display:block; height:0; clear:both; visibility:hidden;}

8 Div Floating IE text produces 3 pixel bugs
The left side of the object floating on the right side of the outer patch to locate the left margin, the right object within the text will be left with 3px spacing.

The code is as follows Copy Code

#box {float:left; width:800px;} #left {float:left; width:50%;} #right {width:50%;} *html #left {margin-right:-3px;//This sentence is the key}
HTML code <div id= "box" > <div id= "left" ></div> <div id= "right" ></div></div>

9 Property Selector (This is not compatible, is a hidden CSS bug)
p[id]{}div[id]{}
This is hidden from the IE6.0 and IE6.0 versions, and the FF and opera functions
There is a difference between the property selector and the child selector, and the scope of the child selector shrinks from the form, and the property selector is larger in scope, as in P[id], and all of the P tags have the same type of ID.

The question of IE hide-and-seek
When the div application is complex, there are some links in each column, div and so on this time is prone to hide and seek.
Some content does not show up when the mouse selects this area is found to be true on the page.
workaround : Use Line-height attribute for #layout or use fixed height and width for #layout. The page structure is as simple as possible.

11 Height Not suitable
Height is not adaptable when the height of the inner object changes when the outer height can not be automatically adjusted, especially when the inner object is used
When margin or paddign.
Cases:

The code is as follows Copy Code
<div id= "box" >
Content in the <p>p object </p>
</div>
CSS: #box {background-color: #eee;}
#box p {margin-top:20px;margin-bottom:20px; text-align:center;}

Workaround: Add 2 empty div object CSS code to and from the P object:. 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.