<!DOCTYPE html>
<style>
* {
outline: 1px solid black;
}
html {
background: white;
}
body {
background: pink;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 200px;
}
.nowrap {
background: orange;
white-space: nowrap;
}
</style>
<body><div></div><div class="nowrap">HelloFriendsHelloFriends</div><div></div></body>