Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

CSS Examples: border

Examples

Here is an example of some text in a table cell with a one pixel, solid, black border.

Styles Used

.black {
	padding: 10px;
	width: 300px;
	border: 1px solid #000;
}