here is the problem I want to use 2 css style sheets on my page. Because sometime, the element in those 2 style sheets are the same. So I want it to look at the style1.css first, if it is not there, then look at the style2.css.(by doing that, it does not get conflict if they have the same elements) Is that possible to do it? if yes, how can I do it? thanks
Just place two links to the stylesheet in the <head> tag, <link rel="stylesheet" type="text/css" href="style1.css" /> <link rel="stylesheet" type="text/css" href="style2.css" /> Code (markup):
The best and most efficient solution would be to clean up your code. Yes it may be a lil bit of a task but in the long run you'll be happy you did it.