skip to Main Content

How to change a css after selector for a specific id – Html

I am trying to change the code such that when I hover on #btnSaveChanges, it will change with background color blue instead of black. Similar with #btnLogout. HTML <button id="btnSaveChanges" className="button-57" onClick={handleSave}> <span>Save</span> <span>Save</span> </button> <button id='btnLogout' className="button-57" onClick={handleLogout}> <span>Logout</span>…

VIEW QUESTION
Back To Top
Search