You can achieve it with white-space:nowrap and display:inline-block.
http://jsfiddle.net/wT8MG/7/
I removed the white space between the blocks to eliminate the extra margin caused by a space being rendered, one of the few drawbacks of inline-block.
If you want just the row to scroll and not the whole page then add overflow-x:scroll to the main or row class.
EDIT:
For IE7 support add <!--[if lt IE 8]> <style>.col{display:inline}</style> <![endif]--> below the CSS.
Ok, IE tricked me by keeping the document mode in IE8 standards when I switched the browser mode to IE7.
The CSS so far that will work in IE8+. Edited for brevity.
.side-panel {height: 300px}
.side-panel .container{background-color: blue;}
.main {
width: 100%;
white-space:nowrap
}
.container {background-color: #ddd;height: 30px;margin-top: 10px;}
.col {
display:inline-block;
vertical-align:top;
white-space:normal;
border:0;
box-sizing:border-box;
background-clip:padding-box !important;
}
@media screen{
.col {
margin-left:1%;
padding:0 0%;
}
.row .col:first-child {margin-left:0;}
.span_1 {width:19.2%;}
.span_2 {width:39.4%;}
.span_3 {width:59.6%;}
.span_4 {width:79.8%;}
.span_5 {margin-left:0;width:100%;}
}