Pretty simple idea, but I'm not sure the best way to do this. I'd like to be able to style it as one div (if possible).

What's the best way to create an octogonal div?

link|improve this question

76% accept rate
1  
You can't. Your options are faking it with an image or using SVG/VML – Sam Dufel Feb 17 at 1:45
1  
or css, which is exactly what im after... – fancy Feb 17 at 1:50
The example below isn't really an octogonal div; it's a square with the corners obscured. It's fine if you just need to display an octagon, but you need to put anything layered behind it, you're in trouble. – Sam Dufel Feb 17 at 1:56
1  
@SamDufel jsfiddle.net/uBC2X – GGG Feb 17 at 2:05
feedback

1 Answer

up vote 14 down vote accepted

The CSS used in this link is this:

#octagon {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
}

#octagon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;    
    border-bottom: 29px solid red;
    border-left: 29px solid #eee;
    border-right: 29px solid #eee;
        width: 42px;
    height: 0;
}

#octagon:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;    
    border-top: 29px solid red;
    border-left: 29px solid #eee;
    border-right: 29px solid #eee;
    width: 42px;
    height: 0;
}

It is constructed from the div element itself which is given a rectangular shape. Using the :before and :after pseudo classes, content is added to create two trapeziums that complete the octagon. Cleverly this keeps the actual tag count at just one by using the funkier bits of CSS.

The origins of this technique can be found here.


Here is a quick demo. The blue part is the :before CSS and the green the :after CSS. And even better, here is a demo that allows transparent backgrounds! (thank you @GGG).

link|improve this answer
I stand corrected. +1. – AlienWebguy Feb 17 at 1:48
I'd +1 for a mind-bogglingly cool link, but I'm out of votes today =/ Great find, though – Joe Feb 17 at 1:49
Thanks for this example, I was expecting to use :before and :after. Exactly what I was looking for, thank you. – fancy Feb 17 at 1:50
@Joe That's quite alright; it's the thought that counts. I particularly like the Yin Yang in my posted link - it's fantastically simple! – JamWaffles Feb 17 at 1:51
You can #link to the Yin Yang: css-tricks.com/examples/ShapesOfCSS/#yin-yang – thirtydot Feb 17 at 1:54
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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