Online: 11661
By using Text-Shadow we can create a drop shadow beneath the selected text.
<style> a.class1 { font-size: 50px; text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.5); } a.class1:hover { background-color: #690; } </style> <body> <a href="http://www.dotnetfunda.com" class="class1">DotNetFunda.com</a> </body>
In the above code snippet, the DotNetFunda.com link comes with shadow.