"Reference" CSS Browser compatibility manual

Source: Internet
Author: User

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
#IamFloat {
Float:left;
margin:5px;

Display:inline;

}

3. Double distance    generated by floating ie;
#box {float:left;
          width:100px;
          margin:0 0 0 100px;
          //In this case, IE will produce a distance of 200px
           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, and margins can be controlled ( block element); The inline element is characterized by an uncontrolled (inline element);     #box {display:block) on the same line as the other elements, and//can be emulated as a block element display for inline elements: Inline The effect of implementing the same row arrangement is diplay:table;  

4 ie with width and height problems
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 a 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. The 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 <div> into the <body> tab, then specify a class for the Div, and then the CSS design:    
#container {
         min-width:600px;
         width:expression_r (Body.clientwidth < 600?) "600px": "Auto");}    
The first min-width is normal, but the width of line 2nd uses Java, which is only known by IE, which also makes your HTML document less formal. It actually uses Java's judgment to achieve the minimum width.

6.DIV floating IE text generates 3 pixels of 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 from the left.    
# box{ 
       float:left;
       width:800px;}   
#left {
       float:left;
       width:50%;}   
#right {
        width:50%;} &NBSP;&NBSP
*html #left {
        margin-right:-3px;
        //This sentence is the key}   
<div id= "box" >    <div id= "left" ></div>   <div id= "right" ></div>    </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 closed; clear floating; self-adapting height;
① such as:< #div id= "Floata" >< #div id= "FLOATB" >< #div id= "NOTFLOATC" > The NOTFLOATC here do not want to continue panning, but want 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 < #div class= "FLOATB" > < #div class= "NOTFLOATC" > Add < #div class= "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 let 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 property (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 we use most probably is float:left. Sometimes we need to do a unified background behind the float div in the n column, for example:    <div id= "page" >    <div id= "left" ></div>   <div id= "center" ></div>    <div id= "right" ></div>    </div>    For example, we want to set the background of the page to blue, so that the background color of all three columns is blue, but we will find that as the left center of right is stretched downward, and the page actually saves the height unchanged, the problem is because the page is not a float property, and our page because to center, can't set to float, so we should solve     <div id= "page" >   <div id= "bg "Style=" float:left;width:100% ">   <div id=" left "></div>   <div Id= "center" ></div>   <div id= "right" ></div>   </div>    </div>    embed a float left and the width is 100% of the Div solution  

④ Universal Float closed (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, to need to close the Di V Plus class= "clearfix" can be tried.         .clearfix:after {content: "."; display : Block; height:0; Clear:both; Visibility:hidden; }    .clearfix {display:inline-block;}         .clearfix {display:block;}              or This setting:. hackbox{display:table;// Displays the object as a table of block element level} 

11. Highly non-adaptable
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 {
}
#box p {
margin-top:20px;
margin-bottom:20px;
Text-align:center; }
<div id= the contents of the "box" > <p>p object </p> </div>
Workaround: Add 2 empty div object CSS code to the P object:
, 19
height:0px;
Overflow:hidden;}
Or add the border attribute to the Div.

12. Why is there a gap in the picture under the IE6?
There are many ways to fix this bug, either by changing the layout of the HTML, or by setting the IMG to Display:block or setting the Vertical-align property to Vertical-align:top | Bottom |middle |text-bottom can be solved.

13. 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 14.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. The priority problem ID of the attribute is higher than class, see example three above. Convenient JS and other client script, if you want to script an object in the page, then you can define an ID, otherwise it can only be used to traverse 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.

The method in which content is displayed in ellipses after the length is exceeded
This method applies 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>

16. 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.0 strict//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > < 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; -</style>

17. Why can't I define a container with around 1px height?
IE6 This problem is due to the default row height, there are many workarounds, such as: Overflow:hidden | zoom:0.08 | line-height:1px

18. How can I make the layer appear above flash?
The workaround is to set the flash to transparent <param name= "wmode" value= "Transparent"/>

19. How to make a layer vertically centered in the browser
Here we use the percent absolute positioning, with the method of negative value of the outer patch, the size of negative value for 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>

20. Do not allow link wrapping
A
White-space:nowrap;
}
21. Always let Firefox show scroll bar
HTML {
overflow:-moz-scrollbars-vertical;
More Mozilla/firefox private CSS properties can be referenced here. Requires cross-browser support, or you can use the
Body, HTML {
min-height:101%;
}

22. Center The Block element horizontally
margin:0 Auto;
is actually
Margin-left:auto;
Margin-right:auto;
This technique basically all the CSS textbooks will have a description, don't forget to add a width to it. can also be used under Exploer
body{
Text-align:center;
}
Then define the inner layer container
Text-align:left;
Recovery.

Hide Exploer textarea scroll bar

TEXTAREA {
Overflow:auto;
}

Exploer By default textarea will have a vertical scroll bar (don't ask me why).

Set up print paging

H2 {
Page-break-before:always;
}

The Page-break-before property enables you to set pagination when a page is printed.

Delete a dashed box on a link

A:active, A:focus {
Outline:none;
}

Firefox defaults to a dotted box when the link gets focus (or when clicked), and can be deleted using the properties above.

The simplest CSS reset

* {
margin:0; padding:0
}


FF and IE

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

2. The border of the link (A-label) and the background a link with the border and back color, you need to set Display:block, and set the Float:left guarantee does not break line. 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 hyperlink style that has been clicked is not hover and active, many people should have encountered this problem, the workaround 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. Cursor Cursor:pointer can display cursor finger in IE FF at the same time, hand only IE can

5.UL padding and margin 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 label 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 problems, In my CSS, I usually use this style first ul,form{margin:0;padding:0;} The definition died, so the back will not be a headache for this.

7. Box model explanation inconsistency problem in FF and IE box model interpretation inconsistent results 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}
Repeated definition of the words according to the last one to execute, so can not only write margin:xx px!important;
#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-}

8. Attribute selector (this is not compatible, is a bug to hide the CSS) p[id]{}div[id]{} This is for IE6.0 and IE6.0 versions below are hidden, FF and opera role. There's a difference between a property selector and a child selector, The range of the sub-selectors 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 method. 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 is worth noting that the XXXX!important is placed on top of the other sentence, which has been 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 while writing CSS, while cursing that hateful m$ ie. in fact, for the standard of CSS support, 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 absolutely not "!    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 directly use Word-wrap:break-word, FF we use JS Insert & #10, the method to solve <style type= "Text/css" > <!--div {       width:300px;      word-wrap:break-word;      border:1px solid red; --</style> <div id= "FF" > Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</ div> <scrīpt type= "text/javascrīpt" > Tobreakword (El, Intlen) {      varōbj= getElementById (EL);       var strcontent=obj.innerhtml;       var strtemp= "";       while (Strcontent.length>intlen) {          strtemp+=strcontent.substr (0,intlen) + "& #10;";       &nbSp;  strcontent=strcontent.substr (intlen,strcontent.length);       }      strtemp+= "& #10;" +strcontent;      obj.innerhtml=strtemp; } if (Getelementbyid   &&  !all)    tobreakword ("FF", 37); </scrīpt>

13. Why IE6 the width of the container differs from the FF interpretation
<?xml version= "1.0" encoding= "gb2312"?> <! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 strict//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > < 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 </div> the difference between the width of the container is not the width of the border (border) in its contents, Here the IE6 is interpreted as 200PX, and FF is interpreted as 220PX, and that is how the problem is caused? Everyone put the container top of the XML removed will find the original problem in this, the top of the declaration triggered the IE qurks mode, about Qurks mode, Standards mode knowledge, please refer to: http://www.microsoft.com/ China/msdn/library/webservices/asp.net/aspnetusstan.mspx?mfr=true

Ie6,ie7,ff IE7.0 out, the support for CSS has new problems. Browser more, Web page compatibility Worse, tired or we, to solve IE7.0 compatibility problem, find the following article: Now I mostly use!important to hack, for IE6 and Firefox test can be normal display, but IE7 to! Important can be interpreted correctly and will cause the page not to be displayed as required! The following is a compatibility collection of three browsers.

The first, is the CSS hack method height:20px;     *height:25px;     _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;}

    <!--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 foreign sites. .     Create a new CSS style as follows:     #item {          width:200px;          height:200px;         background:red;     }      create a new div and use the CSS style defined previously:     <div id= "Item" >some Text here</div>      adds the lang attribute to the body expression, Chinese is zh:    <body Lang = "en" >      now defines a style for the DIV element:     *:lang (en) #item {          background:green!important;    }       this is to use!important overlay the original CSS style, because: lang selector ie7.0 does not support, so to this sentence will not have any effect, so also achieved the same effect under the ie6.0, but unfortunately, Safari also does not support this property, so you need to add the following CSS style:     #item: Empty {          background: Green!important    }     :empty Selector is a CSS3 specification, although Safari does not support this specification, However, this element will still be selected, whether or not this element exists, and now the Green will now be on a browser other than the version of IE.    

Compatibility with IE6 and FF can be considered in the previous!important personal preference.

"Reference" CSS Browser compatibility manual

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.