2 results
tagged
border
The Complex But Awesome CSS border-image Property — Smashing Magazine
The CSS border-image
property is one of those properties you undoubtedly know exists but may not have ever reached for. In this article, Temani Afif demonstrates different approaches for using border-image
to create clever decorative accents and shapes.
Used for overlay images
https://www.youtube.com/watch?v=opHu7HvFM60
January 26, 2024 at 1:22:54 PM EST
*
FILLER
html - How to increase space between dotted border dots - Stack Overflow
div.five:before {
content: "";
position: absolute;
border: 5px dashed #FF0000;
top: -3px;
bottom: -3px;
left: -3px;
right: -3px;
}
div {
overflow: hidden;
position: relative;
text-align:center;
padding:10px;
margin-bottom:20px;
}
November 16, 2023 at 2:11:36 PM EST
*
FILLER