Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transparent space between div and border with a border radius

Tags:

html

css

I am trying to get something like this:

I've tried using outline but I can't set the border radius on an outline. I've also tried a box shadow with a white border but I need the border to be transparent. Any ideas would be greatly appreciated.

can't set border radius of the outline with this:

.btn {
  outline: 1px solid #B54104;
  outline-offset: 1px;
}

gap between outline and button is not transparent:

.btn {
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #c5170a;
}

The gap between the button and the offset outline must be transparent.

like image 687
Kani Lana Avatar asked Jan 25 '26 11:01

Kani Lana


1 Answers

You can try a background coloration relying on background-clip to avoid coloring a part of the button:

.button {
  display:inline-block;
  padding:3px; /*control the spacing*/
  width:100px;
  text-align:center;
  line-height:30px;
  border-radius:15px;
  color:#fff;
  border:2px solid orange;
  background: orange content-box; /*color only the content*/
}

body {
 background:pink;
}
<div class="button">
button
</div>

Same idea using padding-box and controling the space with border:

.button {
  display:inline-block;
  width:100px;
  text-align:center;
  line-height:30px;
  border-radius:15px;
  color:#fff;
  border:5px solid transparent; /*control the spacing*/
  background: orange padding-box; /*don't color the border*/
  box-shadow: 0 0 0 2px orange; 
}

body {
 background:pink;
}
<div class="button">
button
</div>
like image 114
Temani Afif Avatar answered Jan 28 '26 05:01

Temani Afif



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!