skip to Main Content

Css – Transitioning SVG Line Position

document.addEventListener("DOMContentLoaded", (event) => { const hamburgerButtons = document.querySelectorAll('.hm-button'); const hamburgerLines = [ { closed: { x1: 13, x2: 37, y1: 13, y2: 13, }, open: { x1: 13, x2: 37, y1: 37, y2: 13, } }, { closed: { x1:…

VIEW QUESTION

Html – Div element going out of parent div in Browser

I am making a website for currency exchange (as a college assignment), and I am facing this absurd issue here. This is my entire code: @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } #bg…

VIEW QUESTION
Back To Top
Search