I am trying to make it so that if you hover over the id, it goes visible. But I want it only a 50 by 50 square that if you hover over it, the whole box will be shown. Let's say there is a 200 by 200 box and I only want the first 50 by 50 to be able to hover to show the 200 by 200 box fully.
Here is what I have:
.id1 {
position: absolute;
left: 5px;
bottom: 10px;
opacity: 0.0;
filter: alpha(opacity=00);
}
.id1:hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
Now I want it to only be when you hover a certain spot.
Towards Rockstar, how do I make it do that?
How do I make it so if I hover over one div, it activates another div?
Here is what I have:
.id1 {
position: absolute;
left: 5px;
bottom: 10px;
opacity: 0.0;
filter: alpha(opacity=00);
}
.id1:hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
Now I want it to only be when you hover a certain spot.
Towards Rockstar, how do I make it do that?
How do I make it so if I hover over one div, it activates another div?