Browsing articles from "October, 2011"
Oct
12

HTML Entities in Unicode Format

By Sam  //  Uncategorized  //  No Comments

See here for an extensive list of HTML entities in escaped unicode format – great for inserting content using the :before CSS pseudo class selector.

http://www.evotech.net/blog/2007/04/named-html-entities-in-numeric-order/

Oct
7

iPhone only stylesheet

If you want to include styles that will only apply to an iPhone you can do so by using and @media declaration within your main stylesheet.

@media screen and (max-device-width: 480px){
h2 { font-size:22px; }
}

Sponsored links