Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want the corners of an element to essentially be cut off. This element has a solid background whereas it's parent element has an image as it's background. The height of this element is unknown. CSS's border-radius property doesn't help me since it rounds it. I found a jQuery plugin that help but it doesn't account for the background image.

share|improve this question

migrated from webmasters.stackexchange.com Apr 27 '12 at 11:32

2 Answers

up vote 2 down vote accepted

What you want is this: http://lea.verou.me/2011/03/beveled-corners-negative-border-radius-with-css3-gradients/

All in CSS.

share|improve this answer
Yes!!! Thank you! – Tyler Crompton Apr 28 '12 at 2:48

Not exactly sure of the question but perhaps you are referring to border-style?

border-style: outset produces beveled edges.

More info: http://www.w3schools.com/css/css_border.asp

share|improve this answer
Think of what I am going for as an octagon. – Tyler Crompton Apr 27 '12 at 7:27

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.