Home  >  Article  >  Web Front-end  >  What does css hack mean?

What does css hack mean?

王林
王林Original
2020-11-16 11:26:245638browse

css hack is to add some special symbols to the css style so that different browsers can recognize different symbols, thereby achieving the purpose of applying different css styles. The purpose of css hack is to make our css code compatible with different browsers.

What does css hack mean?

CSS hack is to allow different browsers to recognize different symbols by adding some special symbols to CSS styles (what browsers recognize what There are standards for symbols, and CSS hack is to let you remember this standard) in order to achieve the purpose of applying different CSS styles.

(Video tutorial recommendation: css video tutorial)

Detailed description:

CSS hack Due to the browsers of different manufacturers, such as Internet Explorer, Safari , Mozilla Firefox, Chrome, etc., or different versions of browsers from the same manufacturer, such as IE6 and IE7, do not have exactly the same understanding of CSS parsing, so the generated page effects will be different and we will not get the page we need. Effect. At this time, we need to write different CSS for different browsers so that it can be compatible with different browsers at the same time and get the page effects we want in different browsers.

Simply put, the purpose of CSS hack is to make your CSS code compatible with different browsers. Of course, we can also use CSS hack to customize and write different CSS effects for different versions of browsers.

CSS Hack generally has three forms of expression, CSS class internal Hack, selector Hack and HTML header reference (if IE) Hack. CSS Hack mainly targets internal class Hack: for example, IE6 can recognize the underscore "_" and asterisk " * ", IE7 can recognize the asterisk " * ", but not the underscore "_", and Firefox cannot recognize both.

Selector Hack: For example, IE6 can recognize *html .class{}, IE7 can recognize *html .class{} or *:first-child html .class{}.

HTML Header Reference (if IE) Hack: For all IE: , for IE6 and below: , this kind of Hack is not only It takes effect on CSS and all code written in the judgment statement.

Related recommendations: CSS tutorial

The above is the detailed content of What does css hack mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn