2017-05-15 2 views

Antwort

0

Ich hoffe, das Ihnen helfen kann.

Ein möglicher Startpunkt kann das sein:

https://jsfiddle.net/pablodarde/dp2zg895/

Sie auch diese Dokumentation für fortgeschrittene Form Design mit CSS überprüfen.

https://css-tricks.com/examples/ShapesOfCSS/

CSS

#cone { 
    width: 0; 
    height: 0; 
    border-left: 70px solid transparent; 
    border-right: 70px solid transparent; 
    border-top: 100px solid red; 
    -moz-border-radius: 50%; 
    -webkit-border-radius: 50%; 
    border-radius: 50%; 

}