# compack
**Repository Path**: zhaimax/compack
## Basic Information
- **Project Name**: compack
- **Description**: A pack of fixing older browsers Compatibility.
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2015-10-03
- **Last Updated**: 2021-06-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
compack
=======
A pack of soloving older browsers Compatibility.
usage
=======
1 **cssFx** is a standalone polyfill that adds all the vendor-specific CSS3 properties you normally have to add for older browsers.
example:
```css
```
```js
```
2 **DD_belatedPNG** a Javascript library that sandwiches PNG image support into IE6 without much fuss.
example:
```js
```
P.S.type:img or background.
3 **html5shiv** is a HTML5 IE enabling script.
example:
```js
```
4 **Modernizr** is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.
5 **PIE** makes Internet Explorer 6-9 capable of rendering several of the most useful CSS3 decoration features.
example:
```css
behavior: url(path/to/pie_files/PIE.htc);
```
P.S.In that same CSS rule, add this style line.
6 **minmax** makes CSS minimum and maximum sizes.
example:
```js
```
7 **fixed** fix IE6 fixed positioning.
example:
add `ie6fixedTL` or `ie6fixedBR` to class.
8 **normalize** makes browsers render all elements more consistently and in line with modern standards.
example:
```js
```
9 **csshover3** fix IE6 hover.
example
```css
```
10 **placeholder** A jquery plugin to support the HTML5 placeholder attribute on most non-HTML5-compliant browsers.
example
```js
$.Placeholder.init(); // default setting
$.Placeholder.init({ color : 'rgb(255, 255, 0)' }); // custom placeholder text color
```