I am cracking my head over what causes the extraneous lines that show up around rounded corners in Chrome, IE a Safari. It does not happen in FF.
div.round-box {
border-bottom: 1px solid #b3b3b3;
height: 20px;
margin-bottom: 15px;
text-align: center;
width: 100%;
}
div.round-box .steps {
background-color: #0fa862;
border: 20px solid white;
border-radius: 32px;
color: white;
font-size: 1.7em;
padding: 15px 25px;
position: relative;
outline: none;
text-decoration: none;
top: 10px;
white-space: nowrap;
-webkit-border-radius: 32px;
}
<div class="round-box">
<a class="steps" href="steps">Follow 5 Easy Steps to Install XYZ</a>
</div>
Many thanks for any hints.