Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
And if you need a transparent background in the header, do three border'а
and add two dashes at the top with ::before
and::after
.block {
position: relative;
border-right: 2px solid black;
border-left: 2px solid black;
border-bottom: 2px solid black;
}
.block::before,
.block::after {
position: absolute;
content: "";
width: 30px;
height: 2px;
top: 0;
background: black;
}
.block::after {
left: 0;
}
.block::before {
right: 0;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question