ASP.NET

How to remove underlines from my links with CSS

The default indication that text on a Web page is a link to another document is that it’s underlined and is a different color from the rest of the text.  If you want to remove that underline you can use the text-decoration property to remove it. By default, the browser sets the text-decoration of an <a> …

Learn more

How specify the font of my text with CSS

You can specify the typeface that your text will adopt by using font-family property:

p {

font-family: serif;

}

CSS allows the specifications of some more generic font families, which are:

– cursive

– fantasy

– monospace

– sans-serif

– serif

– verdana

When you define a font that users don’t have …

Learn more

How to specify font size with CSS

You can use the font-size property to size text in CSS, for example:

font-size: 12px;

The next table describes the units that you can use to size fonts:

Unit identifier

Corresponding Units

pt
Point

pc
Picas

px
Pixels

em
Ems

ex
Exes

%
Percentages

Point and Picas

In this case we have for example:

p {

font-size: 12pt;

}

You should avoid using points and picas to style text for display on …

Learn more

How to replace font tags with CSS

Without CSS you need to set the style for each paragraph on your page:

<p><font color=”#800090″ face=”Verdana,Geneva,Arial,Helvetica”>The latest update of Oracle Solaris 11 delivers unprecedented scale for cloud infrastructures and Oracle environments.</font></p>

You can use CSS to define in the style sheet that the color property of the <p> tag is #800090, and …

Learn more

How to write CSS formatted text on the web page in ASP.NET

If you want to use a stylesheet rule in a web page, you first need to link the page to the appropriate stylesheet. You can do this by adding a <link> element in the <head> section of your page. The <link> element references the file with styles you want to use. The next example allows the …

Learn more

How to create a simple content page in ASP.NET

You can use your master page created as described in the article: How to create a simple master page in ASP.NET in another page by adding the MasterPageFile attribute to the Page directive. This attribute indicates the filename of the master page you want to use:

In VB.NET

<%@ Page Language=”VB” MasterPageFile=”./SiteTemplate.master” … %>

In C#

<%@ Page Language=”C#” MasterPageFile=”./SiteTemplate.master” …

Learn more

How to create a simple master page in ASP.NET

You can create a master page by following the next steps in Visual Studio:

1. Select Website ➤ Add New Item from the menu.

2. Select Master Page

3. Give it a filename for example SiteTemplate.master

4. Click Add.

A master page is a similar to an ordinary ASP.NET web form and can …

Learn more

How to use Visual Studio 2010 to apply stylesheet rules in ASP.NET

The article: How to apply stylesheet rules in ASP.NET shows that you should add a <link> element (which includes stylesheet file) in the <head> section of your web page.  You can do the same by using Visual Studio by dragging your stylesheet from the Solution Explorer and dropping it onto the design surface of the page …

Learn more

How to apply stylesheet rules in ASP.NET

If you want to use a stylesheet rule in a web page, you first need to link the page to the appropriate stylesheet. You can do this by adding a <link> element in the <head> section of your page. The <link> element references the file with styles you want to use. The next example allows the …

Learn more

How to create a Stylesheet in ASP.NET

 

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in a markup language. CSS provides a cross-platform solution for formatting web pages that works in conjunction with HTML or XHTML and is supported by virtually all modern browsers.

 

Learn more