|
What you should do is just style the background html to black and have it the same height and width as the image.
To do this, you just create a style sheet for your html page, add a div and id named to whatever you would like, and then just set the background color to black and the width and height to whatever size your image is.
Example of what the CSS id would be:
#image {
width: 800px;
height: 300 px;
background-color: #000000;
}
Hope this helps.
|