Mögliche Werte: Pixel, Prozentsätze
HTML-Code
<p></p>
CSS-Code
p { height: 200px; width: 200px; border: 2px solid #a72525; border-radius: 10px; }
Ergebnis
CSS-Code
p { height: 200px; width: 200px; background: #a72525; border-radius: 50%; }
Ergebnis
CSS Code
p { height: 200px; width: 100px; border: 2px dashed #a72525; border-radius: 100px 0 0 100px; }
Ergebnis
CSS-Code
p { height: 200px; width: 200px; border: 2px dotted #a72525; border-radius: 100% 0 0; }
Ergebnis
CSS-Code
p { height: 200px; width: 100px; background: #f09; border-radius: 50%; }
Ergebnisse
CSS-Code
p { height: 200px; width: 200px; background: #f90; border-radius: 100% 0; }
Ergebnisse
CSS-Code
p { width: 0; height: 0; border: 100px solid gray; border-radius: 100px; border-right-color: transparent; }
Ergebnisse
Das obige ist der detaillierte Inhalt vonDetaillierte Erklärung des Randradius im CSS-Stil. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!