I came across the following code snippet:
<asp:Label ID="lblStatus" CssClass="labelFiltro" runat="server" Text="Status:"></asp:Label>
Until then I did not know CssClass
, I would like to know what is the difference of it to only class
and if the way we define the style is different, eg:
/* O exemplo abaixo funcionaria para ambos? */
.labelFiltro {
color: blue;
}