CSS 2.0
9 Most Common IE Bugs and How to Fix Them
By admin at 16 November, 2009, 9:31 pm

Internet Explorer – the bane of most web developers’ existence. Up to 60% of your development can be wasted just trying to squash out IE specific bugs which isn’t really a productive use of your time…
Read More >>CSS Shorthand – more abot margins and paddings
By admin at 10 September, 2009, 8:47 pm
If your finding that your stylesheets are becoming hard to manage, or you want to trim down your code, you may want to consider using shorthand versions of the properties, for example;
Font
p{
font-weight: bold;
font-size: 12pt;
line-height: 1.0;
font-family: “Arial”;
}
Shorthand is:
p{
font: bold 12pt/1.0 “Arial”;
}
As you can see the font property can be shortened down to one handy line of [...]









