Archive for November, 2007
1
Nov
-
CSS Image Replacement
System fonts can look ugly, and appear rigid. Using CSS you can replace text with a beautifully formed anti aliased image, yet still have all the accessibility and SEO benefits of text headings.
Inline:
<h1>Hello World</h1>
CSS:
h1 {
display:block;
width:100px;
height:0;
padding:30px 0 0…



