Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't seem to get my cells to be inset and have 3D effect

Status
Not open for further replies.

tshad

Programmer
Jul 15, 2004
386
0
0
US
I am trying to get my GridView to have a more 3D look with cells that are inset.

I tried using:

border-style:inset


But that doesn't seem to change anything. The Grid still looks flat.

Is there something else I have to do to get this to work?

Thanks,

Tom
 
Border style normally requires a border thickness, and regularly a color that can convey 3d-ness in relation to the background color.

Without seeing any other CSS you may be applying and what you are applying the border-style to, I can only suggest you apply this to the td's.

Code:
td{

border:4px inset gray;

}

----------------------------------
Phil AKA Vacunita
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.

Web & Tech
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top