Question
Need help with right aligning line behind text
Hello, I have style applied to a span that puts a line behind text. The issue I'm having is that I can't get it to right align (at the end of the text not starting at the beginning). Below is my code. Thank you for any help.
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Line Under Text</title>
<style>
h1{
color: #000000;
}
span{
position: relative;
float: left;
font-family: 'Montserrat', sans-serif;
}
span:after{
position: absolute;
content: "";
display: block;
width: 40%;
height: 10px;
background: #00ff66;
bottom: 4px;
z-index: -1;
}</style>
</head>
<body>
<!-- partial:index.partial.html -->
<h1><span>lorem ipsum dolor sit amet.</span></h1>
<!-- partial -->
</body>
</html>
