Skip to content

Instantly share code, notes, and snippets.

@nicker003
nicker003 / ie67891011-css-hacks.txt
Created August 21, 2018 16:15 — forked from vidaaudrey/ie67891011-css-hacks.txt
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================
" Make IE Better Compatible "
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
======================================================
IE6 Only
==================
_selector {...}
@nicker003
nicker003 / meta-tags.md
Created March 26, 2018 08:59 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@nicker003
nicker003 / CSS Hacks!
Last active September 11, 2015 03:54 — forked from Awilum/CSS Hacks!
CSS Hacks for IE6, IE7, IE8, FireFox, Opera, Safari, Chrome!
/* IE8 Only */
.myClass {
color:red\0/;
padding:70px\0/;
}
/* IE 6 Only */
* html .myClass {
...
}