asad sheikh
asad sheikh

Reputation: 11

i want to change the background color of a div on hover except the icon part of the div?

<div class="col-md-4 col-sm-12 content1">
    <div class="media">
        <div class="media-object pull-left">
            <a href="#" class="fa fa-desktop"></a>
        </div>
        <div class="media-body">
            <h3> WEB <span class="greenText">DESIGNING</span></h3>
            <p class="pull-right">Do you need a web site for your business? Not sure where to begin? We can help you create the web site of your dreams.</p>
        </div>
    </div>
</div>

I want to change the background color of .content1 except .media-object that is inside the .content1

Upvotes: 0

Views: 36

Answers (1)

Mario Melchor
Mario Melchor

Reputation: 21

You can just target the following class .media-body

.media-body:hover {
  background: red;
}

Upvotes: 2

Related Questions