如何以编程方式将font-weight粗体添加为<figcaption>
?
我试过了:
HtmlGenericControl figCap = new HtmlGenericControl("figcaption");
figCap.Attributes.Add("font-weight", "bold");
答案 0 :(得分:0)
您需要.Style.Add("font-weight", "bold")
,因为.Attributes.Add("font-weight", "bold")
只会创建<figcaption font_weight="bold">...
。