Is there a way to create this shape using only CSS? I'm having trouble getting the middle white square perfectly centered. How can I achieve this?
https://i.sstatic.net/Z9Cfb.png
This is my current code:
<div style="position:absolute; top:20px; right:20px; border-bottom:100px solid white; border-left:100px solid blue;">
<span style="width:50px; z-index:99999; background-color:white; height:50px; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);"></span>
</div>