|
I have a Flash inserted in a div, I want to center it in the div and make the html background black.
body{
background-color: #000000;
}
The following achieves those results in IE but not firefox. This seems to be a common problem. What am I missing?
#flash{
text-align: center;
width: 100%;
position: absolute;
top: 15%;
}
|