What I am using in CSS is
form fieldset { height : 300px; }
but I have
<fieldset><legend>ONE</legend></fieldset>` <fieldset><legend>TWO</legend></fieldset>
The problem is both field sets are being applied the same height.
Is there a way to apply different heights to different fieldsets from CSS. I am not looking for inline styles which I know how to apply.
Give each fieldset an ID if you will only use each ONCE, otherwise use a class
OR
A class signifies that many elements can use it. with Id in W3C it is the standard that the Id attribute be unique to the page
In CSS you reference a class like
OR
for the ID you use the hash like
OR