<div class="container"></div>
.container {
position: relative;
width: 500px;
height: 500px;
background-color: #c4c4c4;
}
.container::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 250px;
height: 250px;
border-top: 3px solid #00ff00;
border-right: 3px solid #00ff00;
}