Link to home
Start Free TrialLog in
Avatar of willsherwood
willsherwood

asked on

HTML design technique question: gold and silver borders for table

My client wants to highlight two sets of product thumbnails with gold and silver borders.
How can i achieve a chrome-like effect?

I can only think of trying to make a fixed-size background (fixed is dangerous i know) and making a frame in PS.
Are there any other tricks people can think of?

thanks!
Avatar of pigmentarts
pigmentarts
Flag of United Kingdom of Great Britain and Northern Ireland image

why not just do this in CSS?

<style>
table {border:1px solid #000}
all four borders will be black
table img {border:1px solid #000}
all four borders of the image will be black
</style>

just change the color code to gold and one to silver, play around with thickness and colors to get the affect
Avatar of willsherwood
willsherwood

ASKER

How can i get a chrome 3D effect tho in CSS? (sorry if i wasn't clear about that)
ASKER CERTIFIED SOLUTION
Avatar of pigmentarts
pigmentarts
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks anyway, i was able to finagle a cell background frame from photoshop, with drop shadow, etc.