我正在尝试为网格设置样式,并将标题的font-weight
设置为bold
,但它不起作用
我试图将font-weight
设置为整个网格,但即使这样也行不通!仍然显示normal
重量。
.RadGrid_MyCustomSkin
{
margin-left:auto;
margin-right:auto;
color:#63141A;
font-weight:bold;
}
你能帮我解决疑似的原因吗?
答案 0 :(得分:1)
如果您在表中工作,则为table
元素提供字体权重将不起作用。您需要解决特定的细胞。
如果.RadGrid_MyCustomSkin
是表的类,则需要执行
.RadGrid_MyCustomSkin td { font-weight: bold }
答案 1 :(得分:0)
font-weight:bold !important;
试试这个吗?