2010-09-30 54 views
0

我在我的web應用程序中使用了FieldSet元素。現在我需要對其應用樣式,以便邊框顏色爲藍色,圖例顏色爲粗體。 我該怎麼做?在此先感謝ASP.net中的FieldSet元素

回答

1

使用此 -

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