Border-Radius-Vorschau
CSS border-radius visuell mit Schiebereglern, Vorlagen und Live-Vorschau bearbeiten — CSS mit einem Klick kopieren
border-radius: 20px;Vorlagen
Farbe
Breite
Höhe
Border-Radius-Vorschau
CSS border-radius visuell mit Schiebereglern, Vorlagen und Live-Vorschau bearbeiten — CSS mit einem Klick kopieren
Funktionen
- Live preview of `border-radius` with per-corner controls (TL / TR / BR / BL)
- Eight named presets (rounded, pill, leaf, blob, ticket, etc.)
- Output as CSS shorthand: `border-radius: 10px 20px 5px 15px;` or single value if all corners match
- Elliptical corners (the slash syntax `40px / 20px`) are not directly editable in this UI — set all four corners equal for symmetric output
- Copy the CSS line to clipboard with one click
Anleitung
- Ziehen Sie die Schieberegler, um jede Ecke anzupassen.
- Oder klicken Sie auf eine Vorlage für schnelle Formen.
- Kopieren Sie die generierte CSS-Eigenschaft.
Tipps & Best Practices
- Single value (e.g. `border-radius: 8px`) applies to all four corners — the most common case.
- Four-value shorthand goes TL / TR / BR / BL (clockwise from top-left).
- Elliptical corners (`Xpx Ypx / Xpx Ypx`) give a "leaf" or asymmetric shape — supported in CSS but not exposed in this UI.
- For animated radius changes, transition `border-radius` directly — the property is animatable.
- Mobile / iOS Safari: corner radius up to ~50% of the smaller side renders as a perfect circle (`border-radius: 50%`).
FAQ
Was ist border-radius?
CSS border-radius rundet die Ecken eines Elements ab. Sie können alle Ecken gleichmäßig festlegen oder jede einzeln steuern.
Wann sollte ich % statt px verwenden?
Verwenden Sie px für feste Abrundung. Verwenden Sie % für Formen relativ zur Elementgröße — 50% erzeugt einen Kreis bei einem quadratischen Element.