Codette
Codette

Reputation: 1007

div hover background-color change?

How can I make it act as if a line of div is anchor so when I hover on it it returns to red

CSS

.e
{
    width:90px;
    border-right:1px solid #222;
    text-align:center;
    float:left;
    padding-left:2px;
    cursor:pointer;


}
.f .e
{
    background-color:#F9EDBE;

}

HTML

<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

Answers (4)

kamel
kamel

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

Love Kumar
Love Kumar

Reputation: 1124

div hover background color change

Try like this:

.class_name:hover{
    background-color:#FF0000;
}

Upvotes: 4

mgraph
mgraph

Reputation: 15338

.e:hover{
   background-color:#FF0000;
}

Upvotes: 140

Ibu
Ibu

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

Related Questions