Docs/CSS/Borders & Outline

CSS Borders

Border Properties

  • border — shorthand (width style color)
  • border-radius — sudut membulat
  • border-style — solid, dashed, dotted, double, groove, ridge

Outline

Outline mirip border tapi TIDAK mengambil ruang (di luar box model). Sering digunakan untuk fokus aksesibilitas.

style.css
Try It →
.b {
  padding:16px;
  margin:8px 0;
  text-align:center;
  font-weight:bold;
}