Log in

View Full Version : Two CSS's active on one page



jdadwilson
03-09-2013, 04:19 AM
I have two CSSs that I need to have active on one page. The first is my primary CSS and the second is for a popup calendar. My problem is that in each I need to fix the height of the <tr>. One needs to be 23px and the other 15px. But, whichever one loads last sets the height for the other.

Is there a way to limit which value gets assigned to the individual <tr> tags?

TIA for your assistance.

jdadwilson

Beverleyh
03-09-2013, 08:49 AM
You would need to assign a class to each tr so you could target them individually in the CSS. Or use an inline style directly in the page markup. Here's a tutorial for using classes: http://www.tizag.com/cssT/class.php

If you need more help, please post a link to your page and indicate which <tr> should have which height.