Forum: HTML and CSS Jan 2nd, 2009 |
| Replies: 6 Views: 2,153 It's a background image set in the document body.
Here's the CSS code for it:
body
{
background-image: url(image.gif);
background-position: top right;
background-repeat: no-repeat;
} |
Forum: HTML and CSS Dec 31st, 2008 |
| Replies: 17 Views: 1,176 These are the 'bare' essentials of the CSS centering hack: the width and the margin. If you don't specify a width, the margin trick won't work. If you don't specify the left and right margins as auto... |