issam seghir
issam seghir
KPCKevin Powell - Community
Created by issam seghir on 8/29/2023 in #front-end
How Can I Setting Up HTTPS for using a Web API
No description
6 replies
KPCKevin Powell - Community
Created by issam seghir on 8/26/2023 in #os-and-tools
how can i use English autocomplete in vscode
!gif like IntelliSense but for english in markdown files
3 replies
KPCKevin Powell - Community
Created by issam seghir on 3/21/2023 in #front-end
border-image problem (solved)
I'm using border-image to add a linear gradient border to the bottom of an image. However, the top corners of the image are also showing the border, even though I only want it to appear on the bottom. Here's an image that illustrates the problem: ! I've applied the following CSS to the image container:
see : https://codepen.io/ISsamDev99/pen/ExedPvx
.articles img {
display: block;
max-width: 100%;
border-bottom: solid 3px ;
border-top-right-radius: var(--main-border-radius);
border-top-left-radius: var(--main-border-radius);
border-image: linear-gradient(to left ,red, blue) 27 / 30px;
}
.articles img {
display: block;
max-width: 100%;
border-bottom: solid 3px ;
border-top-right-radius: var(--main-border-radius);
border-top-left-radius: var(--main-border-radius);
border-image: linear-gradient(to left ,red, blue) 27 / 30px;
}
I expected the border to only appear on the bottom of the image, with the top corners of the image being unaffected.
8 replies