当用户将鼠标悬停在文本上时,我正在尝试更改文本的颜色并为其添加下划线。
我尝试了以下方法,但它不起作用。我确实在整个互联网上寻找了解决方案,但没有找到适合我特殊需求的解决方案。
<style type="text/css">
.container{ width: 100px; float: left; background: #e2edf9; overflow: hidden; }
.content {width: 10px; height:20px; cursor: pointer; color: black; }
.content:hover{color: orange;}
</style>
<div class="container">
<div class="content" onclick="search(this)" >**EWR**</div>
<div class="content" onclick="search(this)" >**NRT**</div>
</div>