span {
cursor:pointer;
color:blue;
text-decoration:underline;
}
Additionally you can use :hover
pseudo-class to style the element when hovered(you can use any styles not just the ones originally used). Ex.
span:hover {
text-decoration:none;
text-shadow: 1px 1px 1px #555;
}
Example