CSS for browser compatibility (ie and Firefox) tips for finishing

Source: Internet
Author: User

CSS compatibility with the browser is sometimes a headache, perhaps when you understand the techniques and principles, it will not be difficult, from the online collection of ie7,6 and FIREOFX compatibility processing skills and collation. For web2.0, please try to write the code in XHTML format, and DOCTYPE affect the CSS processing, as the standard, must add DOCTYPE declaration.

CSS Tips

Vertical centering problem for 1.div

Vertical-align:middle; Increase the line spacing to as high as the whole Div line-height:200px; Then insert the text and center it vertically. The disadvantage is to control the content not to break the line

2. Question of margin doubling

A div set to float doubles the margin set under IE. This is a bug that exists in a IE6. The solution is to add display:inline to this div;

For example:

< #div id= "Imfloat" >
The corresponding CSS is
#imfloat {
Float:left;
margin:5px;
Display:inline;}

3. Double the 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}

Here's a look at block and inline two elements: The block element is characterized by always starting on new lines, height, width, row height, margin can be controlled (block elements); The inline element is characterized by an uncontrolled (inline element) on the same line as other elements;

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

4 ie with width and height issues

IE does not recognize the definition of min-, but in fact it treats the normal width and height as a condition of min. This problem is big, if only with the width and height, the normal browser of these two values will not change, if only with Min-width and min-height, ie, the following is not set width and height.

For example, to set the background image, this width is more 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;}

5. Minimum width of the page

Min-width is a handy CSS command that allows you to specify that the element should be minimal or less than a certain width, so that the layout is always correct. But IE doesn't recognize this, and it actually puts width as the minimum width. In order for this command to work on IE, you can put a

#container {min-width:600px;width:expression_r (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 by JavaScript's judgment.

6.DIV floating IE text generates 3 pixel bug

The left object floats, the right side is positioned with the left margin of the outer patch, and the text within the right object is spaced 3px 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 the key}
<div id= "box" >
<divid= "left" ><divid= "Right" ></div>

7.IE Hide and seek problem

When the div application is complex, there are some links in each column, and the div is prone to hide-and-seek problems.

Some content does not show up when the mouse selects this area is found content is indeed 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.

8.float Div closure, clear float, adaptive height

① For example: #div id= "Floata" >< #div id= "FLOATB" >< #div id= "NOTFLOATC" > here the NOTFLOATC does not want to continue panning, but wants to go down. (where the properties of Floata and FLOATB have been set to float:left;)

This code is no problem in IE, the problem is in FF. The reason is that NOTFLOATC is not a float label and the float label must be closed. In the #divclass = "FLOATB" > #divclass = "NOTFLOATC" > plus the #divclass = "clear" > this div must pay attention to the position, And there must be no nested relationship with the two Div siblings with the float attribute, otherwise an exception will occur. And the clear style is defined as follows:. clear{Clear:both;}

② as an external wrapper div do not set dead height, in order to allow the height can automatically adapt to the wrapper inside add overflow:hidden; When the box containing float, the height of automatic adaptation in IE invalid, This time should trigger the layout of IE private properties (evil ie Ah!) ) with zoom:1, can be done, so that the compatibility is achieved.
For example a certain wrapper is defined as follows:

. colwrapper{Overflow:hidden; zoom:1; margin:5px Auto;}

③ for typography, the CSS description that we use most probably is float:left. Sometimes we need to do a unified background behind the Floatdiv in the N column, for example:

<div id= "Page" >
<divid= "left" ><divid= "Center" ><divid= "Right" ></div>

For example, we want to set the page's background to blue, to achieve all three columns of the background color is blue, but we will find that with the left centerright is stretched downward, and page incredibly save the height of the same, the problem is because the page is not a float property, And our page is to be centered, cannot be set to float, so we should solve

<div id= "Page" >
<div id= "bg" style= "float:left;width:100%" >
<divid= "left" ><divid= "Center" ><divid= "Right" ></div>
</div>

Then embed a float left and the width is 100% div solved

④ Universal float closed (very important!)

For the principle of clear float see [How to clear floats without structuralmarkup], add the following code to the global CSS, add class= "Clearfix" to the div that needs to be closed, try Upset.


. clearfix:after {content: "."; display:block; height:0; clear:both;visibility:hidden;}
. clearfix {Display:inline-block;}

. clearfix {Display:block;}

Alternatively, set:. hackbox{display:table;//Display the object as a block-element-level table}

9. Height not adapted

Height intolerance is when the height of the inner object changes, the outer height cannot be automatically adjusted, especially when the inner object uses margin or paddign.

Cases:

#box {background-color: #eee;}
#box p {margin-top:20px;margin-bottom:20px; text-align:center;}
<div id= "box" >
The contents of the <p>p object </div>

Solution Tip: Add 2 empty div object CSS code to the P object:. 1{height:0px;overflow:hidden;} Or add the border attribute to the Div.

10. Why is there a gap in the picture under the IE6?

There are many tricks to solve this bug, either to change the layout of the HTML, or to set the IMG to Display:block or set the Vertical-align property to Vertical-align:top

Bottom middle text-bottom can be solved.

11. How to align text with the input box

Plus vertical-align:middle;

<style type= "Text/css" >
<!--
Input {
width:200px;
height:30px;
border:1px solid red;
Vertical-align:middle;
}
-
</style>

What is the difference between the definition ID and class in the 12.web standard?

A. The Web Standard is not allow duplicate ID, such as div id= "AA" is not allowed to repeat 2 times, and class is defined by the classes, theoretically can be infinitely repeated, so that the definition of multiple references can be used.

Two. Priority issues for attributes

The priority of ID is higher than class, see the example above

Three. Convenient JS and other client-side script, if you want to script an object in the page, then you can define an ID, otherwise only by traversing the page element plus specify a specific attribute to find it, this is a relatively waste of time resources, far less than a simple ID.

Tips for displaying ellipses in Li content beyond length

This tip works with IE and op browser

<style type= "Text/css" >
<!--
Li {
width:200px;
White-space:nowrap;
Text-overflow:ellipsis;
-o-text-overflow:ellipsis;
Overflow:hidden;
}

-
</style>

14. Why IE cannot set scroll bar color in Web Standard

The solution is to replace body with HTML

<! DOCTYPE HTML PUBLIC "-//w3c//dtd XHTML 1.0strict//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<meta http-equiv= "Content-type" content= "text/html;charset=gb2312"/>
<style type= "Text/css" >
<!--
HTML {
Scrollbar-face-color: #f6f6f6;
Scrollbar-highlight-color: #fff;
Scrollbar-shadow-color: #eeeeee;
Scrollbar-3dlight-color: #eeeeee;
Scrollbar-arrow-color: #000;
Scrollbar-track-color: #fff;
Scrollbar-darkshadow-color: #fff;
}
-

15. Why can't I define a container with around 1px height?

IE6 This problem is due to the default row height, there are many techniques to solve, such as: Overflow:hidden zoom:0.08 line-height:1px

16. How can I make the layer appear above flash?

The workaround is to set the flash to transparent

<param name= "wmode" value= "Transparent"/>

17. How to make a layer vertically centered in the browser

Here we use the percent absolute positioning, with the technique of negative value of the outer patch, the size of the negative to its own width height divided by two

<style type= "Text/css" >
<!--
div {
Position:absolute;
top:50%;
lef:50%;
margin:-100px 0 0-100px;
width:200px;
height:200px;
border:1px solid red;
}
-
</style>

FF and IE

1. Div centering problem

Div set Margin-left, margin-right for Auto is already centered, ie not, ie need to set the body center, first in the parent element definition text-algin:center; This means that the content within the parent element is centered.

2. Link (A-label) border and background

A link with border and background color, need to set Display:block, and set Float:left guarantee not wrap. Refer to MenuBar, set a and menubar height is to avoid the bottom of the display dislocation, if not set height, you can insert a space in the menubar.

3. Hover style does not appear after hyperlink access

The clicked Hyperlink style is not hover and active, many people should have encountered this problem, the solution is to change the order of CSS properties: l-v-h-a

Code:

<style type= "Text/css" >
<!--
A:link {}
a:visited {}
a:hover {}
a:active {}
-
</style>

4 Finger cursor

Cursor:pointer can display the cursor finger in IE FF at the same time, hand only IE can

Padding and margin of 5.UL

UL label in FF default is padding value, and in IE only margin default has value, so first define ul{margin:0;padding:0;} Will solve most of the problems.

6. Form Label

This tag in IE, will automatically margin some margins, and in the FF margin is 0, so if you want to show consistency, so it is best to specify the margin and padding in the CSS, for the above two issues, my CSS is generally used first in the style Ul,form {margin:0;padding:0;} The definition died, so the back will not be a headache for this.

7. Box model Interpretation inconsistency problem

The box model in FF and IE explains inconsistencies resulting in 2px resolution: div{margin:30px!important;margin:28px;} Note that the order of the two margin must not be written in reverse, important this property IE is not recognized, but other browsers can be recognized. So under IE it is actually interpreted as:

DIV{MARING:30PX;MARGIN:28PX} Repeat definition is executed according to the last one, so it is not possible to write only margin:xxpx!important; #box {width:600px;//for ie6.0-w\idth : 500px; forff+ie6.0}
#box {width:600px!important//for ff width:600px;//for ff+ie6.0width:500px;//for ie6.0-}

8. Attribute selector (this is not compatible, is a bug to hide CSS)

p[id]{}div[id]{}

This is hidden for IE6.0 and IE6.0 versions, FF and opera. There is a difference between the property selector and the child selector, the range of the sub-selector is reduced in form, the range of the property selector is larger, such as P[id], and all P tags have the same type of ID.

9. The most ruthless means-!important

If there is no way to solve some of the details, you can use this technique. FF will automatically parse for "!important", but IE will be ignored.

. tabd1{
Background:url (/res/images/up/tab1.gif) no-repeat 0px 0px!important;
Background:url (/res/images/up/tab1.gif) no-repeat 1px 0px; }

It should be noted that the XXXX!important must be placed on the other sentence above, has mentioned

Default value problem for 10.IE,FF

Maybe you've been complaining about why you have to write different CSS specifically for IE and FF, why IE makes people headache, and then write CSS, and curse that abominable Mie. In fact, for the standard support of CSS, IE is not as bad as we think, the key is that the default value of IE and FF is not the same, mastered this technique, you will find that compatible with FF and IE CSS is not so difficult, perhaps for the simple CSS, you can completely without "!important" this thing up.

We all know that the browser in the Display page, the Web page will be based on the CSS style sheet to determine how to display, but we do not necessarily have all the elements in the stylesheet is described in detail, of course, there is no need to do so, for those not described in the property, the browser will use the built-in default way to display , such as text, if you do not specify a color in the CSS, then the browser will be in black or system color to display, div or other elements of the background, if not specified in the CSS, the browser will be set to white or transparent, and so on other undefined style. So there's a lot of things. The root cause of the difference between FF and IE is that their default display is different, and how this default style should be displayed I know there are no corresponding standards in W3, so don't blame IE for this.

11. Why the text in FF cannot open the height of the container

The container of fixed height value in standard browser is not open like IE6, then I want to fixed height, and want to be able to be open how to set it? The way is to remove height setting min-height:200px; Here in order to take care of the IE6 do not know min-height can be defined as:

{
Height:auto!important;
height:200px;
min-height:200px;
}

12.FireFox How to make a continuous long field wrap

It is well known that IE uses word-wrap:break-word directly, in FF we use JS to insert
The skills to solve

<style type= "Text/css" >
<!--
div {
width:300px;
Word-wrap:break-word;
border:1px solid red;
}
-
</style>

<divid= "FF" >aaaaaaaaaaaaaaaaaaaaaaaaaaaa

<scrīpttype= "Text/javascrīpt" >

function Tobreakword (el, Intlen) {
Varōbj=document.getelementbyidx_x (EL);
var strcontent=obj.innerhtml;
var strtemp= "";
while (Strcontent.length>intlen) {
Strtemp+=strcontent.substr (0,intlen) + "
";
Strcontent=strcontent.substr (intlen,strcontent.length);
}
strtemp+= "
"+strcontent;
Obj.innerhtml=strtemp;
}
if (document.getelementbyidx_x &&!document.all) tobreakword ("FF", 37);

</scrīpt>

13. Why is the width of the container IE6 different from the FF interpretation?

<?xml version= "1.0" encoding= "gb2312"?>
<! DOCTYPE HTML PUBLIC "-//w3c//dtd XHTML 1.0strict//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<meta http-equiv= "Content-type" content= "text/html;charset=gb2312"/>
<style type= "Text/css" >
<!--
div {
Cursor:pointer;
width:200px;
height:200px;
border:10px Solid Red
}
-
</style>
<divōnclick= "alert (this.offsetwidth)" > Make Firefox compatible with IE

The difference is that the overall width of the container is not the width of the border (border) in the inside, where IE6 is interpreted as 200PX, and FF is interpreted as 220PX, that is how to cause the problem? Everyone put the container top of the XML removed will find the original problem in this, the top of the declaration triggered the qurksmode of IE, about qurks mode, standards mode of the relevant knowledge, please refer to the relevant information.

Ie6,ie7,ff

IE7.0 out, the support for CSS has new problems. Browser more, net bpx;
_height:20px;

Note the order.

This also belongs to CSS HACK, but it is not as concise as above.

#example {color: #333;}
* HTML #example {color: #666;}
*+html #example {color: #999;}

The second is to use IE-specific conditional annotations

<!--other browsers--
<link rel= "stylesheet" type= "Text/css" href= "Css.css"/>

<!--[if IE 7]>
<!--suitable for IE7---
<link rel= "stylesheet" type= "Text/css" href= "Ie7.css"/>
<! [endif]-->

<!--[If LTE IE 6]>
<!--suitable for IE6 and---
<link rel= "stylesheet" type= "Text/css" href= "Ie.css"/>
<! [endif]-->

Third, the CSS filter method, the following is the classic translation from the foreign website.

Create a new CSS style as follows:

#item {
width:200px;
height:200px;
background:red;
}

Create a new div and use the style of the CSS that you defined earlier:

<div id= "Item" >some texthere

Add the lang attribute to the body expression, in Chinese en:

<body lang= "en" >

Now define a style for the DIV element:

*:lang (en) #item {
Background:green!important;
}

This is done in order to overwrite the original CSS style with!important, because: lang selector ie7.0 does not support, so this sentence will not have any effect, so also achieved the same effect ie6.0, but unfortunately, Safari also does not support this property, So you need to add the following CSS styles:

#item: Empty {
Background:green!important
}

: The empty selector is a CSS3 specification, and although Safari does not support this specification, it will still be selected, whether or not this element exists, and now the Green will now be on a browser other than IE versions.

Compatibility with IE6 and FF can take into account the previous!important personal prefer to use the first, concise, compatibility is better.

CSS for browser compatibility (ie and Firefox) tips for finishing

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.