@Spicy-DSubmitted over 2 years ago
how to center my entire div to the body of the webpage? i tried using display: flex property in body to center my div but it didnt work
how to center my entire div to the body of the webpage? i tried using display: flex property in body to center my div but it didnt work
Hi Deepak
Have you tried using translate(). Try using below CSS in .QR-code
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);