<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
width: 100px;
height: 100px;
background: #eee;
}
div:hover {
width: 100px;
height: 100px;
background: #eee;
border-bottom: 1px solid;
margin-bottom: -1px;
}
</style>
</head>
<body>
<div></div>
<div>test</div>
</body>
</html>