header hover highlight

by shengoo

HTML

<div class="m-hd">
                <h2 class="title">
                    产品介绍</h2>
    <h2 class="title">
                    产品介绍</h2>
            </div>

CSS

.m-hd {
height: 40px;
border-bottom: 2px #CCC solid;
}
.m-hd .title {
color: #3B91FF;
float: left;
line-height: 40px;
position: relative;
_top: 2px;
font-weight: normal;
font-size: 24px;
/*border-bottom: 2px #3B91FF solid;*/
margin: 0 10px;
}
.m-hd .title:hover{
border-bottom: 2px #3B91FF solid;    
}
}