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
yes and no, This project is for learning purposes but making the webcam work locally according to MDN HTTPS is required, see : https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia
6 replies
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
thanks
3 replies
KPCKevin Powell - Community
Created by issam seghir on 3/21/2023 in #front-end
border-image problem (solved)
thanks , I didn't know I could use it this way .
8 replies
KPCKevin Powell - Community
Created by issam seghir on 3/21/2023 in #front-end
border-image problem (solved)
8 replies
KPCKevin Powell - Community
Created by issam seghir on 3/21/2023 in #front-end
border-image problem (solved)
using border-image-width: 0px 0px 4px auto ; fix the problem, the problem happens when I use the shorthand border-image and specify the border width in all directions
/* the is wrong and case the problem */
border-image: linear-gradient(to left ,red, blue) 27 / 30px;
/* the is solution*/
border-image: linear-gradient(to left ,red, blue);
border-image-width: 0px 0px 4px auto ;
/* the is wrong and case the problem */
border-image: linear-gradient(to left ,red, blue) 27 / 30px;
/* the is solution*/
border-image: linear-gradient(to left ,red, blue);
border-image-width: 0px 0px 4px auto ;
8 replies