Is there a way to have only a vertical scroll bar using CSS. Here is the code I am using:
<style type="text/css">
<!--
.contentBox {
display:block;
border-width: 1px;
border-style: none;
border-color: 000;
padding:0px;
margin-top:0px;
width:200px;
height:50px;
overflow:scroll
}
-->
</script>
<div class="contentBox">
<table id="tblSample" width = "200">
<tr><td>1st Row/1st Column</td><td>1st Row/2nd Column</td></tr>
<tr><td>2nd Row/1st Column</td><td>2nd Row/2nd Column</td></tr>
</table>
</div>
Is there any way I can modify this to get ride of the bottom (horizontal) scroll bar?
Thank You In Advance
Jeff Sulman
<style type="text/css">
<!--
.contentBox {
display:block;
border-width: 1px;
border-style: none;
border-color: 000;
padding:0px;
margin-top:0px;
width:200px;
height:50px;
overflow:scroll
}
-->
</script>
<div class="contentBox">
<table id="tblSample" width = "200">
<tr><td>1st Row/1st Column</td><td>1st Row/2nd Column</td></tr>
<tr><td>2nd Row/1st Column</td><td>2nd Row/2nd Column</td></tr>
</table>
</div>
Is there any way I can modify this to get ride of the bottom (horizontal) scroll bar?
Thank You In Advance
Jeff Sulman