回答編集履歴
1
抜けがあったので修正
answer
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
`CssStyle`プロパティで設定できると思います(未確認)。
|
2
2
|
|
3
3
|
```c#
|
4
|
+
AttributeCollection myAttributes = DivId.Attributes;
|
4
|
-
|
5
|
+
myAttributes.CssStyle.Add("color", "white");
|
5
6
|
```
|
6
7
|
|
7
8
|
参考:
|