What is the error in this CSS class?
.ux-row-action-cell .x-grid3-cell-inner {
padding:1px 0 0 0;
}
I don't see any error in ASP.NET, but when I am using the same CSS in PHP, Firebug says "syntax error".
What is the error in this CSS class?
.ux-row-action-cell .x-grid3-cell-inner {
padding:1px 0 0 0;
}
I don't see any error in ASP.NET, but when I am using the same CSS in PHP, Firebug says "syntax error".
Perhaps your selector is what's causing the issue... Try adding a comma in between:
.ux-row-action-cell, .x-grid3-cell-inner
<div class="ux-row-action-cell x-grid3-cell-inner"> or <div class="ux-row-action-cell"><div class="x-grid3-cell-inner"><!-- etc --></div></div>.foo .bar means an element with the bar class inside an element with the foo class, e.g. <div class="foo"><div class="bar">this is affected</div></div>. .foo, .bar means an element with either the foo or bar class, so it matches <div class="bar"></div> even if there's no .foo parentIt would be helpful if we could get a bigger snippet of the code around that line. Static strings would be output the same either way, so possibly a malformed piece of your dynamic code is causing the syntax error. The syntax for that one line is correct.