+ 5
How can I make the beige box shadow on the headers to match the dashed border?
12 Antworten
+ 3
Or, if you mean that SHADOW was dashed... You can make shadow with breaking space after nn pixel. Again, use a property for that.
+ 9
Try by lowering ex. box-shadow:1px 1px 1px 1px. I am not shure do you meen this.
+ 4
Sanja Panic i meant as in how can I make the shadow look dashed?
+ 4
Aleksandar Nedeljkovic yes that's what I wanted. How would that be written out?
+ 1
If you mean that line are dashed, then you can use property for that.
+ 1
Joi You can use several ways, but I can't remember now how could do it. I tell you tomorrow.
+ 1
Joi Well, follow the code:
.dashed-shadow {
position: relative;
top: 8px;
left: 8px;
display: inline-block;
color: black;
}
+ 1
Joi After that, you can use like this:
<span class="dashed-shadow">About</span>
+ 1
Joi Better way is:
<h1 class="dashed-shadow">
<span>About</span>
</h1>
+ 1
Joi Better look at: https://codepen.io/lbebber/pen/BzoHi
+ 1
Joi Here my code:
https://code.sololearn.com/WX9o19Y952Kz/?ref=app