Difference between revisions of "HTML to CSS"
Jump to navigation
Jump to search
m (move up bold & italic) |
(underline is text-decoration: underline) |
||
| Line 12: | Line 12: | ||
| | | | ||
|---- | |---- | ||
| − | | | + | |italic |
|<i></i> | |<i></i> | ||
|font-style: italic; | |font-style: italic; | ||
| + | | | ||
| + | |---- | ||
| + | |underline | ||
| + | |<i></u> | ||
| + | |text-decoration: underline; | ||
| | | | ||
|---- | |---- | ||
Revision as of 16:30, December 17, 2010
The following table is a translation of the features in HTML and CSS "coding".
| Feature | HTML | CSS | Comment |
| bold | <b></b> | font-weight: bold; | |
| italic | <i></i> | font-style: italic; | |
| underline | <i></u> | text-decoration: underline; | |
| center text | align=center | text-align: center | |
| background | bgcolor=#E6D596 | background-color: #E6D596 | Do not use quotes around hex codes here! |
| capitalize words | text-transform:capitalize; |