I am trying to do this.
The circle is: 90px 90px
How do I add the colored circle to the middle?
I am not exactly sure how this would be done.
https://jsfiddle.net/xft3r061/
.fence {
width: 640px;
height: 340px;
background:
linear-gradient(45deg,
#0000 7px,
blue 0 7.5px,
#0000 0 10px),
linear-gradient(-45deg,
#0000 7px,
blue 0 7.5px,
#0000 0 10px);
background-size: 10px 10px;
}
<div class="fence"></div>

We can use flex with justify and align items.