I have an image called myImage.jpg. This is my CSS:
body {
background-image:url("../images/myImage.jpg");
background-repeat: no-repeat;
margin: 0px auto;
}
#header {
width: 640px;
background-color: red;
margin: 0px auto;
}
This made the height of myImage.jpg 100% of the screen and made the width 640px, but it did not center myImage.jpg. myImage.jpg is completely to the left.
How do I center myImage.jpg?