Umm... couldn't find a question anywhere in your post.
BTW, you need to use the following syntax:
---
background-image: url('weave.jpg');
---
Note that when using external CSS files, paths are always resolved
relative to the CSS file itself, not the page to be affected. Not
relevant to your situation (because all your files are in the same
folder), but just FYI.
On Feb 16, 6:31 pm, Brock <[email protected]> wrote:
> I developed a CSS file with just the follwing four lines of code so
> far:
>
> body
> {
> background-image: "weave.jpg";
>
> }
>
> The weave.jpg image resides in the same directory as my html page and
> the css.
>
> So basically I'm wanting to create an html file with the use of a css
> to make the body of the page have the weave.jpg background.... any
> ideas... this is just a practice to get me going on css.
>
> <head runat="server">
> <title>Conversions</title>
> <link href="MyStyleSheet.css" rel="Stylesheet" type="text/css" />
> </head>
>
> THANKS!!