Vue Bootstrap Borders
Vue Borders - Bootstrap 4 & Material Design
Note: We are transitioning MDB4 to a legacy version and focusing on developing MDB5.
While we'll continue to support for the transition period, we encourage you to migrate to
MDB5. We're offering a 50% discount on MDB5 PRO to help with your transition,
enabling you to leverage the full potential of the latest version. You can find more information here.
get 50% discount on MDB5 PRO
Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons, or any other element.
Border
Use border utilities to add or remove an element’s borders. Choose from all borders or one at a time.
Additive
<template>
<div>
<span class="border border-dark"></span>
<span class="border-top border-dark"></span>
<span class="border-right border-dark"></span>
<span class="border-bottom border-dark"></span>
<span class="border-left border-dark"></span>
</div>
</template>
Subtractive
Use border utilities to add or remove an element’s borders. Choose from all borders or one at a time.
<template>
<span class="border border-0 border-dark"></span>
<span class="border border-top-0 border-dark"></span>
<span class="border border-right-0 border-dark"></span>
<span class="border border-bottom-0 border-dark"></span>
<span class="border border-left-0 border-dark"></span>
</template>
Border color
Change the border color using utilities built on our theme colors.
<template>
<div>
<span class="border border-primary"></span>
<span class="border border-secondary"></span>
<span class="border border-success"></span>
<span class="border border-danger"></span>
<span class="border border-warning"></span>
<span class="border border-info"></span>
<span class="border border-light"></span>
<span class="border border-dark"></span>
<span class="border border-white"></span>
</div>
</template>
Border-radius
Add classes to an element to easily round its corners.
<template>
<div>
<img class="rounded" alt="100x100" src="..." data-holder-rendered="true">
<img class="rounded-top" alt="100x100" src="..." data-holder-rendered="true">
<img class="rounded-right" alt="100x100" src="..." data-holder-rendered="true">
<img class="rounded-bottom" alt="100x100" src="..." data-holder-rendered="true">
<img class="rounded-left" alt="100x100" src="..." data-holder-rendered="true">
<img class="rounded-circle" alt="100x100" src="..." data-holder-rendered="true">
<img class="rounded-pill" alt="150x75" src="..." data-holder-rendered="true">
<img class="rounded-0" alt="100x100" src="..." data-holder-rendered="true">
</div>
</template>
Sizes
Use .rounded-lg
or .rounded-sm
for larger or smaller border-radius.
<template>
<div>
<img class="rounded-sm" alt="100x100" src="...">
<img class="rounded-lg" alt="100x100" src="...">
</div>
</template>