0

我正在尝试应用/更改 asp.net 下拉列表的 CSS。我正在使用的代码如下:

for (int i =0;i < aDropdownList.Items.Count ;i++ )
{ 
   aDropdownList.Items[i].Attributes.Add("style", "color:Red" );
}

此代码更改color属性就好了,但是当我想添加缩进(padding-leftmargin-left)时它不起作用。

for (int i =0;i < aDropdownList.Items.Count ;i++ )
{ 
   aDropdownList.Items[i].Attributes.Add("style", "padding: 0 0 0 5px" );
}

我想要做的就是显示一个嵌套列表(类似树视图的结构)。

4

1 回答 1

1

你可以尝试使用空间吗?这是一种实现 - http://blog.phoenixdigital.com/?p=331

于 2013-08-14T12:13:57.000 回答