Hello, I'm having a bit of trouble with my background image in CSS. There is this one image that I would like to use as a background image, it is a gradient with stripes. I am having issues with doing so because I can not get the image to take up the entire page. Below is the image that I am trying to work with, the HTML file, and the CSS file.
Image:
HTML File:
Code:
<html>
<!-- Head -->
<head>
<!-- Title -->
<title>Neo Productions [HomePage]</title>
<!-- Stylesheet Link -->
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<!-- Body -->
<body>
</body>
</html>
CSS File:
Code:
/* Neo Productions [StyleSheet] */
/* Basic Styles */
body {
background: url('images/bg.png') repeat-x;
}
Any help will be greatly appreciated!
Thanks,
Neo