How can I force div contents to stay in one line with HTML and CSS?

Try this:

div {
    border: 1px solid black;
    width: 70px;
    overflow: hidden;
    white-space: nowrap;
}

Leave a Comment