In the link above, how can I make that when I click on "Register" it will hide the welcome class and show the register class ... If I substitute focus for hover it works but it's obvious that I need a clickable option and not on mouse over...
*:hover ~ .register_box {
display: flex;
}
*:hover ~ .welcome_box {
display: none;
}
And I am wondering how to do this in CSS not JavaScript.
And I am using all elements selection (the "*") for testing purpose.