snowboardr
Programmer
How do you make the link underline go lower than the letters, so the letter are not on the line?
Jason
Jason
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html>
<head>
<title>Untitled</title>
<style>
a {
text-decoration: none;
border-bottom: 1px solid blue;
padding-bottom: 5px;
}
</style>
</head>
<body>
<p style="height: 60px;">
<a href="#">my link goes here</a>
</p>
</body>
</html>