/* ------------------------------ */ /* Box style demo */ /* Author: johndecember@gmail.com */ /* Date: 2001-05-01 */ /* Purpose: very simple demo */ /* of making a box using a style sheet. */ /* ------------------------------ */ BODY { background-color: silver; } DIV.box { color: black; background-color: yellow; border-color: black; font-family: tahoma, verdana, sans-serif; margin-left: 5%; margin-right: 5%; padding: 10pt; text-align: center; border: 2pt; border-style: dashed; }