I've been attempting to modify the text color and add an underline when a user hovers over it.
Despite trying various methods, I haven't been successful. I scoured the internet for a solution but couldn't find one that met my specific requirements.
<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>