Log in

View Full Version : Border to an image/area



Zanezeroqwe
11-15-2013, 04:06 AM
I have this css:

.border {
border-top: 0px solid #7F7F7F;
border-left: 1px solid #7F7F7F;
border-right: 1px solid #7F7F7F;
border-bottom: 1px solid #7F7F7F;
}

But I want to have pictures for my border (something like this for the left border: 5277)

How might I do this?

CChawps
11-16-2013, 09:45 PM
If you want rounded borders then:


.border {
border: 1px solid #7f7f7f;
border-radius: 10px;
}

Else you can go look at the border properties:
http://www.w3schools.com/cssref/pr_border.asp