|
How to write CSS formatted text on the web page?
by: Itfunda
Product Type: Training
Technologies: ASP.NET
This how to describes you how to write CSS formatted text on the web page.
ASPX PAGE< p><asp:Label ID="Label6" runat="server" Text="CSS Formatted text" ForeColor="Red" BackColor="Green" /></p>
To write CSS formatted text on the web page, we can use asp:Label control and specify the CSS style using its properties. ForeColor, BackColor, Font and its sub properties are mainly used to display CSS formatted text on the web page.
Demo Path: /Label-Literal/LabelPage.aspx
|