Can we Disable underline of inside span element of underlined anchor tag. If it is possible please tell me how?
<a>hello<span>praveen</span</a>
<style type="text/css>
a{
text-decoration:underline;
}
a span{
text-decoration:none;
}
</style>