I am working with a developer that has asked that I link to two CSS files -- but the second one should only call to the changed classes. I understand what he means, but am not sure how to carry it out. Instead of looking like this:
<link href="css/style1.css" rel="stylesheet" type="text/css" />
<link href="css/pt-style.css" rel="stylesheet" type="text/css" />
It should have the first link to the main style, and then somehow call to only changed classes from the second CSS. Could someone show me how to do this?
Thanks in advance!
Edit:
Would it make more sense to just link to the first, main CSS and then add an internal style sheet beneath that to make the changes to the specific page? If the internal style sheet had classes that were named the same in the external sheet, which one would take precedence?