I am trying to build boxes with images in CSS and am having difficulties doing the vertical parts to it. I have the "header" and the "footer" placed where I would like them to be, now its just connecting those two pieces. Or is there a way that I could make a border in CSS and not use images? Any and all help would be greatly appreciated.
04-22-2012, 05:41 PM
dangerousprince
You can make as many boxes as you like using just html and css, no images required. Make a div tag and style it using css like this:
HTML Code:
<div></div>
HTML Code:
div {
width:250px;
height:250px;
border:1px #000 solid;
}
04-22-2012, 05:43 PM
brendanoshan
Dangerousprince, thank you for the help! Is there a way to round the edges of the box?