Seeking assistance with creating a CSS3 layout similar to the one shown in the image below:
Currently, I have managed to center a square on the screen using the following HTML and CSS:
HTML:
<div id="divBorder">
</div>
CSS:
#divBorder{
border-style: solid;
border-width: 1px;
position: absolute;
width: 300px;
height: 300px;
z-index: 15;
top: 50%;
left: 50%;
margin: -110px 0 0 -160px;
}
However, I am unable to figure out how to add the two half squares on either side of the central square. Any assistance or guidance on achieving this layout would be greatly appreciated. Thank you in advance!