I probably spelt that wrong. Sue me.
Anyways, if I specify two style-sheets in HTML, what's the standard? i.e. If I have:
<link rel="stylesheet" href="fixedsheet.ccs">
<link rel="stylesheet" href="userssheet.ccs">
And in the first have:
.lay_subtitle {font-family: Verdana; font-size: 18pt; color: #000000; border-bottom-style: inset; border-bottom-width: 2px; margin-right: 5px}
And in the second, have:
.lay_subtitle {border-bottom-style: raised}
Would the final style for the "lay_subtitle" be in the Verdana font, 18pt, with a RAISED bottom? Or would the bottom be still "INSET", or would the two cancel each other out and have NO style?
Thanks!
Me.