FieldSet背景颜色



我试图用下面的代码为Telerik中的字段集设置背景色。

谁能给我指个方向,或者有什么别的主意吗?
.RadForm_Office2007.rfdFieldset fieldset
  { 
  border: solid 1px #080808;
   background-color:yellow !important;
    }
 <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" 
  DecoratedControls="Fieldset"  Skin="Office2007"/>
 <fieldset style="float: left; width: 280px;">
<legend>Grid
</legend>     
<telerik:RadTextBox runat="server"></telerik:RadTextBox>
</fieldset>

可以设置背景色为

<fieldset style="float: left; width: 280px; background-color:red;">

你可以使用颜色代码来设置背景色,像这样

<fieldset style="float: left; width: 280px; background-color:#999999;">

您可以访问http://www.colorpicker.com/查找颜色代码

答案就在你眼前

fieldset
{ 
border: solid 1px #080808;
background-color:yellow !important;
}

相关内容

  • 没有找到相关文章

最新更新