Having trouble creating a div with different borders using CSS. I want a card with solid borders on the left, top, and right sides, but a specific border image at the bottom.
I can get either the image or the solid borders, but not both simultaneously.
Whenever I add the image, it applies to all borders.
This is the code I'm using for the bottom image border:
border-width: 0px 0px 32px 0px;
-moz-border-image: url(../images/bordas/Recorte.png) 31 25 33 26 repeat;
-webkit-border-image: url(../images/bordas/Recorte.png) 31 25 33 26 repeat;
-o-border-image: url(../images/bordas/Recorte.png) 31 25 33 26 repeat;
border-image: url(../images/bordas/Recorte.png) 31 25 33 26 fill repeat;
Is there a way to have solid borders on three sides and the image only on the bottom?
If I increase the border-width
, the image shows up instead of the solid border.
Appreciate any help!