I'm trying to make the following shape only with css, problem is I can't get the middle white square right in the middle, how could you go about this? shape:
This is what I have so far:
<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>
