Forum Moderators: not2easy
<div style="background-color:F5E537;
border-width:1px;
border-style:dashed;
border-color:000000;
font-family:arial;
text-align:left;
filter:alpha(opacity=70);
-moz-opacity:0.70;
opacity:0.70;
width:150px;
height:100px;
overflow: auto;">
lots of words
</div>
can anyone help?
Beside the fact that you don't have a # in front of your hex codes for colors, I don't see an issue.
What browser/app are you testing in?
Incidentally, you might want to check out info on CSS shorthand... you could replace the following in your code:
border-width:1px;
border-style:dashed;
border-color:000000;
with
border: 1px dashed #000;
Would save you some typing, and would certainly make things easier on the eyes when you're scoping out an issue like this.
[edited by: Don_Hoagie at 9:22 pm (utc) on Mar. 20, 2006]