what is the correct method for using a custom class to define style for fieldset? code below isn't working.
am i stuck using .legend, don't want to place a style on an actual tag.
thanks.
<style type="text/css">
<!--
.test {
height: 50px;
width: 50px;
}
-->
</style>
</head>
<body>
<fieldset>
<p class="test"><legend>I replace the line</legend>
</fieldset>
</body>
</html>
am i stuck using .legend, don't want to place a style on an actual tag.
thanks.
<style type="text/css">
<!--
.test {
height: 50px;
width: 50px;
}
-->
</style>
</head>
<body>
<fieldset>
<p class="test"><legend>I replace the line</legend>
</fieldset>
</body>
</html>