Exclusive CSS hack for various browsers: Firefox/Opera/Safari/IE

Source: Internet
Author: User

<! Doctype HTML public "-// W3C // dtd html 4.01 // en" "http://www.w3.org/TR/html4/strict.dtd">
<HTML lang = "en">
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8">
<Title> CSS browser hacks </title>
<Style type = "text/CSS">
Body P
{
Display: none;
}
/* Opera */
HTML: First-child # Opera
{
Display: block;
}
/* IE 7 */
HTML> body # IE7
{
* Display: block;
}
/* IE 6 */
Body # IE6
{
_ Display: block;
}
/* Firefox 1-2 */
Body: empty # firefox12
{
Display: block;
}
/* Firefox */
@-Moz-document URL-prefix ()
{
# Firefox {display: block ;}
}
/* Safari */
@ Media screen and (-WebKit-Min-device-pixel-ratio: 0)
{
# Safari {display: block ;}
}
/* Opera */
@ Media all and (-WebKit-Min-device-pixel-ratio: 10000), not all and (-WebKit-Min-device-pixel-ratio: 0)
{
Head ~ Body # opera {display: block ;}
}
</Style>
</Head>

<Body>
<P id = "Opera"> I am from opera 7.2-9.5 </P>
<P id = "safari"> I'm a magic safari </P>
<P id = "Firefox"> I am from firefox </P>
<P id = "firefox12"> I'm your grandfather Firefox 1-2 </P>
<P id = "IE7"> I'm IE 7 </P>
<P id = "IE6"> I'm brain IE 6 </P>
</Body>
</Html>
Although CSS hack is good and easy to be compatible with various browsers, it cannot pass W3C verification, so you have to weigh whether it is necessary to use it.

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.