CSS Hack Collection Summary_Experience Exchange
Block the IE browser (that is, it will not be displayed under IE)
*:lang(zh) select {font:12px !important;} /*Special for FF*/
select:empty {font:12px !important; } /*Visible in safari*/
Select here is the selector, which can be changed according to the situation. The second sentence is unique to the Safari browser on MAC.
Only IE7 recognition
* html {…}
You can use this HACK when you need to make styles only for IE7.
Recognition of IE6 and below
* html {…}
Pay special attention to this place. Many landlords have written HACK for IE6. In fact, IE5.x can also recognize this HACK. Other browsers do not recognize it.
html/**/ >body select {……}
This sentence has the same effect as the previous sentence.
Only IE6 does not recognize it
select { display /*IE6 does not recognize it*/:none;}
The main purpose here is to separate an attribute and value through CSS comments, which are released before the colon.
Only IE6 and IE5 do not recognize it
select/**/ { display /*IE6, IE5 does not recognize it*/:none;}
The difference between this and the above sentence is that the selector and flower There is an extra CSS comment between the brackets.
Only IE5 does not recognize it
select/*IE5 does not recognize it*/ { display:none;}
This sentence is the comment in the attribute area removed from the previous sentence. Only IE5 does not recognize
Box model solution
selct {width:IE5.x width; voice-family:””}\””; voice-family:inherit; width:correct width;} The clearing method of the box model is not handled through !important. This needs to be clear.
Clear float
select:after {content:”.”; display:block; height:0; clear:both; visibility:hidden;}
In Firefox, when the children are all When floating, the height of the parent cannot completely cover the entire child. Then use this HACK to clear the floating to define the parent once, which can solve this problem.
Truncation ellipsis
select { -o-text-overflow:ellipsis; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; }
This is after exceeding the length It will automatically cut off the excess text and end it with an ellipsis, which is a very good technique. It's just that Firefox doesn't support it currently.
Only recognized by Opera
@media all and (min-width: 0px){ select {……} }
Make separate settings for the Opera browser.
The above are some HACKs in writing CSS. These are used to solve local compatibility problems. If you want to separate the compatibility content, you might as well try the following filters. Some of these filters are written in CSS to import special styles through filters, and some are written in HTML to link or import required patch styles through conditions.
The filter of IE5.x, only IE5.x is visible
@media tty {
i{content:””;/*” “*/}} @import 'ie5win .css'; /*”;}
}/* */
IE5/MAC filters are generally not needed
[Copy to clipboard] [ - ]CODE:
/ *\*//*/
@import “ie5mac.css”;
/**/
IE’s if condition Hack
Only IE
All IE can recognize
Only IE 5.0
Only IE5.0 can recognize
Only IE 5.0
IE5.0 and IE5.5 can be recognized
Only IE 6-
Only IE6 can recognize
Only IE 6/
IE6 and IE5.x below IE6 can be recognized Recognition
Only IE 7/-
Only IE7 can recognize it
The above content is definitely not comprehensive, welcome everyone to join me These techniques are all summarized to provide a convenience for future work inquiries. At the same time, I would like to thank those who have studied these HACKs.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

When the number of elements is not fixed, how to select the first child element of the specified class name through CSS. When processing HTML structure, you often encounter different elements...

The H5 page needs to be maintained continuously, because of factors such as code vulnerabilities, browser compatibility, performance optimization, security updates and user experience improvements. Effective maintenance methods include establishing a complete testing system, using version control tools, regularly monitoring page performance, collecting user feedback and formulating maintenance plans.

Create a progress bar using HTML5 or CSS: Create a progress bar container. Set the progress bar width. Create internal elements of the progress bar. Sets the internal element width of the progress bar. Use JavaScript, CSS, or progress bar library to display progress.

Compatibility issues of multi-row overflow on mobile terminal omitted on different devices When developing mobile applications using Vue 2.0, you often encounter the need to overflow text...

H5 (HTML5) is suitable for lightweight applications, such as marketing campaign pages, product display pages and corporate promotion micro-websites. Its advantages lie in cross-platformity and rich interactivity, but its limitations lie in complex interactions and animations, local resource access and offline capabilities.

Solutions to H5 compatibility issues include: using responsive design that allows web pages to adjust layouts according to screen size. Use cross-browser testing tools to test compatibility before release. Use Polyfill to provide support for new APIs for older browsers. Follow web standards and use effective code and best practices. Use CSS preprocessors to simplify CSS code and improve readability. Optimize images, reduce web page size and speed up loading. Enable HTTPS to ensure the security of the website.

Yes, H5 page production is an important implementation method for front-end development, involving core technologies such as HTML, CSS and JavaScript. Developers build dynamic and powerful H5 pages by cleverly combining these technologies, such as using the <canvas> tag to draw graphics or using JavaScript to control interaction behavior.
