All
I want to place an image as a background to various parts of a table. I'm trying to create a form look where the datafields in the cells looked like they are grouped together. How can I apply one image to columns 1 and 2 through rows 1,2,3,4,and 5 and also reapply the image in columns 5 and 6 rows 1-5?
I've attached the image I want to use to give you perspective. The Table Look image is what I am trying to produce.
Many Thanks
Pete
06-08-2009, 01:58 PM
KDLA
You can recreate the look using CSS.
Code:
form {background:url(bottom.gif) no-repeat; width: ## /*width of the image*/; padding-bottom: ### /*height needed to clear the curve*/}
div {background: #eee /*color of the image*/ border-right: 1px solid #000; border-left: 1px solid #000;}
div.first {background: url(top.gif) no-repeat;}