Skip to content

Instantly share code, notes, and snippets.

View visualkom's full-sized avatar

Antonio La Scala visualkom

View GitHub Profile
@visualkom
visualkom / meta-tags.md
Last active December 5, 2019 16:29
[HTML Meta Tags List] #html

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

Basic HTML Meta Tags

<meta charset='UTF-8' />
<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' />
@visualkom
visualkom / Text Rotation in IE
Last active December 5, 2019 16:26
[Text Rotation in IE] (Snook.ca) #explorer
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
The rotation property of the BasicImage filter can accept one of four values: 0, 1, 2, or 3 which will rotate the element 0, 90, 180 or 270 degress respectively.
@visualkom
visualkom / CSS Image Replacement
Last active December 5, 2019 15:58
[New CSS Image Replacement] (Jeffrey Zeldman blog post) #css
.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}