User2103319870 posted
how do i prevent the "w" from being cutoff
You are trying to apply padding to main div with width set as 100%. Width property specifies the size of the content area. Padding, borders, and margins are added to it.
As a solution add the padding to inner anchor tag as well like below
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<style>
#bottomframe {
background-color: black;
height: 20px;
padding: 5px;
border-top: 1px solid #ABABAB;
;
left: 0;
bottom: 0;
width: 100%;
}
a.paddingstyle
{
padding: 5px;
}
</style>
</head>
<body >
<div id="bottomframe" align="right" Style ="color:white;">
<a class="paddingstyle" href="www.google.com"> go home right now </a>
</div>
</body>
</html>