我正在尝试在启用overflow-x时添加一些margin-right(1%)。您将看到一个示例,通过调整窗口大小并在启用overflow-x时查看红色边框...当x滚动正常工作时,红色边框右侧的边距消失...?
可能需要一些jquery来实现这一点。
JSFIDDLE - http://jsfiddle.net/rbla/e4rEw/32/
HTML
<div>
<div id="test">
<table>
<thead>
<tr>
<th> Lorem ipsum </th>
<th> adhuc maiestatis </th>
</tr>
</thead>
<tr>
<td> dolor sit amet, meis solum eam ea, e </td>
<td> has ea, alii ipsum necessitatibus ex qui. </td>
</tr>
</table>
</div>
</div>
CSS
table { border :3px solid red;
white-space: nowrap;
width: 98%;
margin: 0 1%;
border-collapse: collapse;
}
div { border: 1px dashed blue;
padding: 10px;
overflow-x: auto;
}
JQUERY
window.onresize = function() {
if ( $("div#test").outerWidth() < $("div#test").get(0).scrollWidth ) {
console.log(" x scrollbar enabled ");
$("div#test").css("margin-right","10%");
} else {
console.log(" no x scrolling :) ");
$("div#test").css("margin-right","0");
}
};