<!doctype html><style>
* {
border: 1px solid black;
}
body {
display: grid;
grid-template-rows: 1fr;
width: 200px;
}
.item {
width: 100px;
height: 50px;
background: orange;
}
</style><body><div class="item"></div>