How to position the elements which are even to the right? I've tried nth-child(even);
and float: right;
but it's not working.
#container {
grid-template-columns: repeat(1,minmax(0px,1fr));
grid-column-gap: 60px;
grid-row-gap: 20px;
text-align: left;
display: grid;
width: 100vw;
}
.items {
width: 80%;
height: 90px;
background-color: blue;
}
.items:nth-child(even) {
float: right;
}
<div id="container">
<div class="items"></div>
<div class="items"></div>
<div class="items"></div>
<div class="items"></div>
</div>