MyBB Community Forums

Full Version: [Css] Problem cannot show backround image [Css]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well I am trying css. So I have a external css file and I was just trying stuff. I made a folder and put a image, a .html file and a .css file. I then did this..

This is what I added to the .html file..

<html>
<head>
<link rel="stylesheet" type="text/css" href="global.css" />
</head>
<body>
<h3> Test</h3>
<p> Test  
This is testing my css. </p>
</body>
</html>

This is what I put in my .css file.

body
{
backround-image:url('Backround.jpg');
}
p { color: blue; } 
h3{ color: white; }

I am having trouble with the backround-image:url part. I put the image in that directory but I seem to be getting this without my image..
[spoiler]
[Image: ebfad57a27dee413b8453d75580a6df8.png]
[/spoiler]

As you can see in the top bar I have tryed google. Any suggestions? I probably made a dumb mistake somewhere.
It's background, not backround.
thanks malcom it worked.