issue with style and DIV -
06-17-2006
, 08:28 AM
Hi,
I've created a class for my DIV:
..CutHeader
{
//some properties go here
}
Now when I change the style of my BODY dynamically (using vb.net) :
Code :
With Me.myBody
.Style("filter") = "alpha(opacity=10)"
.Style("opacity") = "0.1"
End With
That only changes the style fo the body and the elements of my page
which are directely between <body></body> but it does not affect the
elements in my DIV. Why ? What should I change ?
Thanks |