<!DOCTYPE html>
<style>
.button01 a:hover, .button01 a:active {
background-color: blue;
}
a.botton01:hover,a.button01:active {
background-color: blue;
}
</style>
<body>
<div>
<a href="#" class="button01">
Click me Button </a>
</div>
</body>
</html>
.Button01 a:hover applies, but not if you change the selector to a.botton01:hover. What's the difference between the two choices and why it doesn't apply when you write the second form... I'm curious
html css button
The meaning of the 'first form' you mentioned is as follows.
The meaning of the 'second form' you mentioned is as follows.
Therefore, the two styling methods you created have different purposes.
.Button01 a:hover
applies, but not if you change the selector to a.botton01:hover
.
You said that, but the second method was applied to the code you uploaded.
I hope it was helpful.
<style>
.button01 a:hover, .button01 a:active {
background-color: red;
}
a.botton01:hover, a.button01:active {
background-color: green;
}
</style>
<body>
<div>
<a href="#" class="button01">
Button1 <!-- Green color is applied. -->
</a>
</div>
<div class="button01">
<a href="#">
Button2 <!-- red color is applied. -->
</a>
</div>
</body>
Note
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
618 Uncaught (inpromise) Error on Electron: An object could not be cloned
613 GDB gets version error when attempting to debug with the Presense SDK (IDE)
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2024 OneMinuteCode. All rights reserved.