Jul
7
2011
The question of CSS hack
Had read this in some blog … thought it was nice to catalog this for future ref …. also could be an important interview question that you would asked some day ….
Write a snippet of CSS that will display a paragraph in blue in older browsers, red in newer browsers, green in IE6 and black in IE7
#content p{color:blue}
html>body #content p {color:red}
* html #content p{color:green}
html>body #content p {*color:black;}
Subscribe to by Email








































