3

我正在尝试使用以下代码为 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>
4

2 回答 2

7

您可以将背景颜色设置为

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

您可以使用颜色代码来设置这样的背景颜色

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

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

于 2013-04-10T19:33:30.837 回答
3

答案就在你眼前

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

}
于 2013-04-10T19:55:00.937 回答