隐藏html水平滚动条而不是垂直滚动条

我有一个固定宽度,但高度可变的html textarea。 我想设置溢出:滚动,并能够显示一个垂直滚动条,但不是一个水平的。 我无法使用溢出:汽车由于其他事情具体到我的情况。

我知道有没有办法使用CSS 2来显示只有垂直滚动条,而不是水平滚动条。 有什么我可以用JavaScript来隐藏水平滚动条?

你可以使用这样的CSS:

 overflow-y: scroll; overflow-x: hidden; 

使用CSS。 它比JavaScript更容易,更快捷。

 overflow-x: hidden; overflow-y: scroll; 

通过添加此代码完全禁用水平滚动条。

 body{ overflow-x: hidden; overflow-y: scroll; } 

在你的HTML表单框中使用wrap=virtual可以去掉框底部的水平滚动条:

  <textarea name= "enquiry" rows="4" cols="30" wrap="virtual"></textarea> 

请看这里的例子 : http : //jsbin.com/opube3/2 (在FF和IE上testing)

 <div style="width:100px;height:100px;overflow-x:hidden;overflow-y:auto;background-color:#000000"> 
 .combobox_selector ul { padding: 0; margin: 0; list-style: none; border:1px solid #CCC; height: 200px; overflow: auto; overflow-x: hidden; } 

设置200px scrolldown大小, overflow-x隐藏任何水平滚动条。

 selector{ overflow-y: scroll; overflow-x: hidden; } 

使用代码片段和jsfiddle工作示例https://jsfiddle.net/sx8u82xp/3/

在这里输入图像说明

 .container{ height:100vh; overflow-y:scroll; overflow-x: hidden; background:yellow; } 
 <div class="container"> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> </div> 

为了我:

 .ui-jqgrid .ui-jqgrid-bdiv { position: relative; margin: 0; padding: 0; overflow-y: auto; <------ overflow-x: hidden; <----- text-align: left; } 

当然,删除箭头