I would recommend working with before and after pseudo elements to achieve this.
Basically I used the div as black background only, used the before element as vertical line and the after element as horizontal line.
.plus {
position: relative;
width:20px;
height:20px;
background:#000;
}
.plus:before,
.plus:after {
content: "";
position:absolute;
background:#fff;
}
/* the vertical line */
.plus:before {
left:50%;
top:4px; /* this defines how much black "border" there should be */
bottom:4px;
width:2px;
transform:translateX(-50%);
}
/* the horizontal line */
.plus:after {
top:50%;
left:4px;
right:4px;
height:2px;
transform:translateY(-50%);
}
Here is is a full example: https://codepen.io/Fitzi/pen/zbMBVw