Associate
- Joined
- 10 Jul 2006
- Posts
- 2,423
Given its the advances in internet speed, do people still optimise their html/css/javascript to take up a minimal amount of space so that it loads faster? Like removing whitespace, tabs, keeping variable names short...
Eg this:
instead of:
Eg this:
Code:
#id{color:#fff}
instead of:
Code:
#id
{
color: #fff;
}