One of the most common technical challenges when developing websites is how do you handle thecross browser rendering issues ?

The answer is some magical javascript called the CSS browser selector. This code allows you to write browser specific styles in a single style sheet: for example:

.ie6 .example {
  background-color: blue
}
.ie7 .example {
  background-color: orange
}