skip to Main Content

Toggle for different height and width in JavaScript

I want to make a toggle which toggles the height and the width of an element whenever it's clicked. <div class="flexbox-container" id="main" onclick="staybig()">Create Account</div> .flexbox-container { transition: height 0.5s, width 0.5s; height: 100px; width: 100px; display: flex; justify-content: center; text-align:…

VIEW QUESTION
Back To Top
Search