Is there a way to create a horizontal line on just the left side of my text? Currently, the code I have creates a line on both sides. How can I modify it to achieve this?
h2 {
width: 100%;
text-align: center;
border-left: 1px solid #000; // Adjusted to only create line on the left side
line-height: 0.1em;
margin: 10px 0 20px;
}
h2 span {
background: #fff;
padding: 0 10px;
}