css| Skills | browser | Web page
1, different interpretations of the box interpreter.#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-
}
2, hide css in IE, use the sub-selector
Html>body #box {}
3, only IE identification
*html #box {}
4, in Ie/win effective and Ie/max hidden, using a backslash
/* \ */
5, for IE to define a separate style
6, the double distance generated by the 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
}
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; The effect of implementing the same row arrangement
diplay:table; For FF, simulating the effect of a table
}
7,for Oprea only
@media all and (min-width:0px) {/* Opera * *
#box {}
}
8,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:
#box {
width:80px;
height:35px;
}
Html>body #box {
Width:auto;
Height:auto;
min-width:80px;
min-height:35px;
}
9, the 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 does not recognize this, and it actually treats the width as a minimum. To make this command available on IE, you can put a
under the tab, and then assign a class to the Div, which is designed like CSS:
#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.
The same approach can also achieve maximum width for IE:
#container
{
min-width:600px;
max-width:1200px;
Width:expression (Document.body.clientWidth < 600?) "600px": document.body.clientWidth > 1200? "1200px": "Auto";
}
10, clear floating
. hackbox{
display:table; To display an object as a table in 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 does not affect the Ie/win browser. -------the most troublesome ...
#box: after{
Content: ".";
Display:block;
height:0;
Clear:both;
Visibility:hidden;
}
11,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.
#box {
Float:left;
width:800px;
}
#left {
Float:left;
width:50%;
}
#right {
width:50%;
}
*html #left {
margin-right:-3px; That's the key.
}
HTML code
12, the 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.