|
|
Home » CSS Tutorial » Deprecated HTML tags and their CSS equivalents
Deprecated HTML tags and attributes and their CSS equivalents
Below a fairly complete list of html tags and attributes that are deprecated in favor of style sheets :
| CSS Property |
CSS Value |
Example |
| <font color="..."> |
color |
CSS color |
H1 {color: blue} |
| <font size="..."> |
font-size |
Length / Percentage |
H1 {font-size : 10px} |
| <font face="..."> |
font-family |
Font family name |
H1 {font-family:verdana} |
| <I> |
font-style |
italic or oblique |
H1 {font-style : italic} |
| <U> |
text-decoration |
Underline | overline | none |
H1 {text-decoration: underline} |
| <B> (not deprecated) |
font-weight |
normal | bold... |
H1 {font-weight: bold} |
| <S> |
text-decoration |
Font family name |
H1 {text-decoration: strike-through} |
| <CENTER> |
font-style |
italic or oblique |
H1 {font-style : italic} |
| <BASEFONT> |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| <STRIKE> |
font-style |
italic or oblique |
H1 {font-style : italic} |
| bgcolor attribute |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| align attribute |
font-style |
italic or oblique |
H1 {font-style : italic} |
| valign attribute |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| width attribute |
font-style |
italic or oblique |
H1 {font-style : italic} |
| height attribute |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| DIR attribute (ltr) |
font-style |
italic or oblique |
H1 {font-style : italic} |
| DIR attribute (rtl) |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| BACKGROUND attribute |
font-style |
italic or oblique |
H1 {font-style : italic} |
| TEXT attribute (BODY) |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| LINK attribute (BODY) |
font-style |
italic or oblique |
H1 {font-style : italic} |
| VLINK attribute (BODY) |
font-family |
Font family name |
H1 {font-family: Tahoma} |
| ALINK attribute (BODY) |
font-style |
italic or oblique |
H1 {font-style : italic} |
Home » CSS Tutorial » Deprecated HTML tags and their CSS equivalents
|
|
|