Heute lernen wir, wie man mit einfachem CSS verschiedene Arten von flachen Grafiken erstellt.
Rechteck
.rectangle { width: 250px; height: 150px; background-color: #6DC75F; } <p></p>
Dreieck
.triangleUp { border-left: 75px solid transparent; border-right: 75px solid transparent; border-bottom: 150px solid #6DC75F; width: 0; height: 0; } <p class="triangleUp"></p>
Oval
.oval { width: 300px; height: 150px; background: #6DC75F; -moz-border-radius: 150px / 75px; -webkit-border-radius: 150px / 75px; border-radius: 150px / 75px; } <p class="oval"></p>
Halbmondform
.moon { width: 150px; height: 150px; border-radius: 50%; box-shadow: 15px 15px 0 0 green; } <p class="moon"></p>
Blätter
.leaf { border-radius: 5px 300px 3px 300px; background: #6DC75F; width: 150px; height: 150px; } <p class="leaf"></p>
Es gibt so viele erstaunliche Dinge, die man mit CSS machen kann ... Viel Spaß beim Programmieren!
Das obige ist der detaillierte Inhalt vonErstellen Sie eine Vielzahl unterschiedlicher grafischer Formen nur mit CSS. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!