Reputation: 1007
How can I make it act as if a line of div is anchor so when I hover on it it returns to red
.e
{
width:90px;
border-right:1px solid #222;
text-align:center;
float:left;
padding-left:2px;
cursor:pointer;
}
.f .e
{
background-color:#F9EDBE;
}
<div>
<div class="e" >Company</div>
<div class="e">Target</div>
<div class="e" style="border-right:0px;">Person</div>
</div>
<div class="f">
<div class="e">Company</div>
<div class="e">Target</div>
<div class="e" style="border-right:0px;">Person</div>
</div>
<div>
<div class="e">Company</div>
<div class="e">Targetaaa</div>
<div class="e" style="border-right:0px;">Person</div>
</div>
<div class="f">
<div class="e">Company</div>
<div class="e">Target</div>
<div class="e" style="border-right:0px;">Person</div>
</div>
Upvotes: 72
Views: 375663
Reputation: 1
<html>
<head>
<style>
.e {
width:90px;
border-right:1px solid #222;
text-align:center;
float:left;
padding-left:2px;
cursor:pointer;
}
e2:hover {
background-color:red;
}
</style>
</head>
<body>
<div>
<div class="e e2" >Company</div>
<div class="e e2">Target</div>
<div class="e e2" style="border-right:0px;">Person</div>
</div>
</body>
</html>
Upvotes: 0
Reputation: 1124
div hover background color change
Try like this:
.class_name:hover{
background-color:#FF0000;
}
Upvotes: 4
Reputation: 43810
if you want the color to change when you have simply add the :hover
pseudo
div.e:hover {
background-color:red;
}
Upvotes: 35