you just need to add text-align: right;
div {
display:grid;
grid-template-columns: repeat(2,1fr);
width: 300px;
}
.left {
grid-column: 1/2;
}
.right {
grid-column: 2/3;
text-align: right;
background-color: red;
}
<div>
<a class="left" href="#"> Left </a>
<a class="right" href="#"> Right </a>
</div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…