I have a table cell that I want to hide overflow text over 100px in width. It's here, but it still shows overflow text: http://jsfiddle.net/tkatcqwe/
.text {
width: 100px;
background: yellow;
white-space: nowrap;
overflow: hidden;
position: relative;
}
<table><tr><td class='text'>a really long text about random things, blah blah blah blah blah blah blah</td></tr></table>