ASP.net中的FieldSet元素

时间:2010-09-30 01:54:37

标签: html css

我在我的Web应用程序中使用FieldSet元素。现在我需要为它应用样式,使边框颜色为蓝色,图例颜色为粗体。 我怎么做?提前致谢

1 个答案:

答案 0 :(得分:1)

使用此 -

<style>
.hdrText
{
    color:red;
font-weight:bold;
}
.border
{
border: solid 1px blue;
}
</style>
<fieldset class="border"><legend class="hdrText">header</legend></fieldset>