Border Radius Previewer

Visually edit CSS border-radius with sliders, presets, and a live preview — copy the CSS with one click

border-radius: 20px;
Presets
Top Left20px
Top Right20px
Bottom Right20px
Bottom Left20px
Color
Width
Height

Border Radius Previewer

Visually edit CSS border-radius with sliders, presets, and a live preview — copy the CSS with one click

Features

  • 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

How to use

  1. Перетаскивайте ползунки для настройки каждого угла.
  2. Или выберите пресет для быстрых форм.
  3. Скопируйте сгенерированное CSS-свойство.

Tips & 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

Что такое border-radius?

CSS border-radius скругляет углы элемента. Вы можете установить одинаковое значение для всех углов или управлять каждым независимо.

Когда использовать % вместо px?

Используйте px для фиксированного скругления. Используйте % для форм относительно размера элемента — 50% создаёт круг на квадратном элементе.