0

CSS border-radius playground

Adjust border-radius by corner or corner pairs, switch units and physical or logical properties, and generate production-ready CSS.

Ask AI

CSS border-radius playground

Response generated with openai/gpt-5.4-nano. AI can make mistakes. Always review the result.
border-radius
HTML
<div class="border-radius" dir="ltr"></div>
Tailwind CSS
Some classes with arbitrary values can be replaced by native classes, depending on the value and your Tailwind CSS configuration.
<div class="inline-[250px] block-[250px] bg-slate-900 border-2 border-solid border-[#94a3b8] rounded-[40px]" dir="ltr"></div>
CSS
.border-radius {
  inline-size: 250px;
  block-size: 250px;
  border-radius: 40px;
  background-color: #0f172a;
  border: 2px solid #94a3b8;
}