Skip to main content

Documentation Index

Fetch the complete documentation index at: https://skelementorcss.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Border style utilities define how a border line is drawn. The shipped set is intentionally small and covers the common UI cases.
ClassStyleCSSUsage
.border-solidSolidborder-style: solid;Default border treatment
.border-dashedDashedborder-style: dashed;Optional or secondary framing
.border-noneNoneborder-style: none;Remove border style

Example

Examples

<div class="elementor-element border-2 border-solid padding-4 background-white rounded">
  Solid border
</div>
<div class="elementor-element border-2 border-dashed padding-4 background-white rounded">
  Dashed border
</div>
<div class="elementor-element border-0 border-none padding-4 background-gray-light rounded">
  No border
</div>

Best Practices

  • Use border-solid for most buttons, inputs, cards, and structural UI.
  • Use border-dashed sparingly for optional, provisional, or drop-zone style patterns.
  • Pair style with explicit width and color classes so the full border treatment is obvious in markup.
  • Use border-none intentionally when a component preset adds a border you want removed.

Border Width

Border width utilities

Border Radius

Border radius utilities