Is there a way to create a similar design to the following:
Some text ----------- Centered Button -----------
I have attempted the code below, but it doesn't quite achieve the desired look.
.html
<div class="dashed">
<span>Some Text</span>
<button>Centered button</button>
<div>
css
.dashed {
border-bottom: 1px dashed #000;
text-align: center;
height: 10px;
margin-bottom: 10px;
}
.dashed span {
background: #fff;
padding: 0 5px;
}
.dashed button {
text-align: center;
background: #fff;
padding: 0 5px;
}
Any suggestions on how to make this layout work?