I'm trying to draw a linestring like this: thin stroke but high internal
Any ideas? I've to use some complex style function?
Thank you
I'm trying to draw a linestring like this: thin stroke but high internal
Any ideas? I've to use some complex style function?
Thank you
I'm not sure what you need. If you want to use it as a divider you could use the <hr>
tag. But if you just want the box you could use a <div></div>
with the following css.
div {
width: 300px;
border-top: 15px solid red;
border-bottom: 15px solid red;
background: grey;
padding: 50px;
margin: 20px;
}