在C#中的用法 :
//1. 修改标题:
this.Header.Title = “This is the new page title.”;
//2. 添加CSS样式:
Style style = new Style();
style.ForeColor = System.Drawing.Color.Navy;
style.BackC...

, , , , ,

基本语法
规则
选择符
任何HTML元素都可以是一个CSS1的选择符。选择符仅仅是指向特别样式的元素。例如,
P { text-indent: 3em }
当中的选择符是P。
类选择符
单一...

, , , , ,