How do I: hover inside a div style?
So my code looks like this:
<div id="blackbox">style="background: black; width: 90px; height: 80px; color: white; text-align: center; font-family: Times; font-size: 20px; position: fixed; left: 0px; bottom: 150px Now this somehow doesn't work on inline CSS, this is the only thing I can do. If you have a solution for this, I will be very grateful. But so, I want to create a property: hover, but how it will not work:
<div style="background: black; width: 90px; height: 80px; color: white; text-align: center; font-family: Times; font-size: 20px; position: fixed; left: 0px; bottom: 150px} blackbox:hover {background: white;} or
:hover {background: white;} or
hover {background: white;}