Here is the result I would get:
So the default button has gradient border with transparent background (as I want to see the parent's background through it). When the user hover over the button I want to fill it with the same gradient has the borders.
So first I tried with border-image property and with an .svg image of my border:
button {
background: transparent;
background-repeat: no-repeat;
border: 3px;
border-style: solid;
border-color: transparent;
border-image-source: url(assets/images/icons/border.svg);
border-image-repeat: stretch stretch;
border-image-slice: 49;
border-image-width: 100px;
border-image-outset: 6px;
padding: 16px 28px;
border-radius: 100px;
}
So I have more or less the result I was waiting for:
Now, how to manage the hover-over animation and fill the background with no size changes !?
Maybe border-image isn't the best way to do it ?
Thanks for your help, Cheers !
This is achievable with CSS gradients. Have a look at my solution below:
Note, you will need to add your own gradient into the
.btn
class underbackground-image: linear-gradient
...Play around with my solution here: https://codepen.io/lachiekimber/pen/mjYNeN