5
I came across the following piece of code:
<asp:Label ID="lblStatus" CssClass="labelFiltro" runat="server" Text="Status:"></asp:Label>
Until then I didn’t know CssClass
, would like to know what is the difference of it to only class
and if the way we define the style is different, example:
/* O exemplo abaixo funcionaria para ambos? */
.labelFiltro {
color: blue;
}
I think it’s . Net parameter for him to identify as a css class at parse time.
– user28595