skip to Main Content

Tailwind CSS style Not applying

where the error is occurred? this is my end points: theme: { screens: { 'mobile-sm': '320px', 'mobile-md': '481px', 'tablet': '769px', 'desktop-sm': '1025px', 'desktop-md': '1201px' }, I need to apply style as, flex-col in the mobile view and flex-row in desktop…

VIEW QUESTION

Html – I want make JS toggle button.. How Can I Fix It?

HTML <div class="icon-menu"> <img src="../images/menu.png" id="navMenu" onclick="changeToCross()"> </div> JS function changeToCross() { let menu = document.getElementById('navMenu'); let src = '../images/menu.png'; if (menu.src === src) { menu.src = '../images/close.svg'; } else { menu.src = src; } } I want to change…

VIEW QUESTION
Back To Top
Search