Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All the examples I've found for using border-image are of fixed x and y. Is there a way to have the border image compensate for different widths or heights, using percentage?

share|improve this question
1  
If you are talking about slicing your image border-image-slice is property you need,you can specify in percantage , see here w3schools.com/cssref/css3_pr_border-image.asp – user1122857 Aug 16 '12 at 14:52
This is exactly what I needed. – Angry Spartan Aug 16 '12 at 16:32

2 Answers

up vote 1 down vote accepted

If you are talking about slicing your image border-image-slice is property you need,you can specify in percantage , see http://www.w3schools.com/cssref/css3_pr_border-image.asp

share|improve this answer

You're not going to be able to do this with straight CSS. You're going to need some javascript to figure out how large the images are and set the borders accordingly. I've created a quick mockup on jsbin. Check it out here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.