I would like to produce this with pure css or as close as possible
The grey area is not nessicarily needed, I am more interested in the black.
I know how to make a triangle like this
But I don't know where to do from there. Is this even possible?
|
|
|||
|
|
|
I think it's possible let's check this link, it will help you http://www.css3shapes.com/ |
|||
|
|
|
I know you ask for a "pure" CSS shape, but here is what i can help with, and it uses a small HTML part, as css3 radius dont do negative radius yet Here is the HTML
And here is the CSS
and the fiddle http://jsfiddle.net/WDgYz/ |
|||
|
|
|
Producing arbitrary shapes with CSS is indeed possible, and the shape you've drawn in the question should be possible. @pundit's answer already points to the one website http://www.css3shapes.com/ which best demonstrates the possibilities of what can be done with CSS3. However, please understand that these are hacks. Creating arbitrary shapes using CSS is very clever, but is really not what CSS was intended for. I would council you to avoid being too "clever" when creating a real web site. You'll need to create extra markup in your HTML to support it, which rather defeats the point of CSS. Importantly, you should also note that a large number of the shapes on the css3shapes website fail to display correctly in some browsers. Obviously IE8 and earlier will struggle with a lot of them, but even browsers like Firefox 3.6 fail to display some of them correctly. Obviously they all work fine in all of the most up-to-date browsers .... but then all of the most up-to-date browsers also support technologies such as Canvas and SVG, which are much better suited to rendering this kind of shape drawing on the browser than CSS hacks. Okay, so IE8 doesn't support Canvas or SVG either, but there are at least some tools for older versions of IE which allow it to simulate Canvas and SVG. I certainly wouldn't want to try to get it working properly for all those CSS shapes. |
|||||||||||
|