How to center a Div / Element? not asking a question but giving an answer, because i myself faced a lots of issue on it
/* Trully Center */ position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); /* Horizontally Center */ position: absolute; left: 50%; transform: translateX(-50%); /* Vertically Center */ position: absolute; top: 50%; transform: translateY(-50%); it will work fine unless your own CSS is conflicting it. html css center New contributor Gchougale32 is a new contributor to […]