I am just messing with a MySpace layout and I want to make a part of it only 50% transparent, what do I need to do to this code? table table table{ background-color:transparent; border-width:4; border-color:rgb(236,0,140); border-style:solid; Code (markup):
Try this: table table table { opacity: .5; filter: alpha(opacity=50); } Code (markup): It isn't supported by all browsers, but it should work in IE and Firefox at least. Put your other CSS attributes in there with it as well.