Table that doesn't look weird and only scrolls horizontally when there isn't enough space allocated on screen for it's width:
table {
display: inline-block;
overflow-x: scroll;
white-space: nowrap;
max-width: 100%
}
Add overflow-y and max-height for vertical size limit and scroll