ซ่อน html ตามแนวนอน แต่ไม่ใช่แถบเลื่อนแนวตั้ง


279

ฉันมี HTML textarea ที่มีความกว้างคงที่ แต่ความสูงของตัวแปร ฉันต้องการตั้งค่าoverflow:scrollและสามารถแสดงแถบเลื่อนแนวตั้ง แต่ไม่ใช่แนวนอน ฉันไม่สามารถใช้งานได้overflow:autoเนื่องจากสิ่งอื่นที่เฉพาะเจาะจงกับสถานการณ์ของฉัน

ฉันรู้ว่าไม่มีวิธีใช้ CSS2 เพื่อแสดงเฉพาะแถบเลื่อนแนวตั้ง แต่ไม่ใช่แนวนอน มีอะไรที่ฉันสามารถทำกับ JavaScript เพื่อซ่อนแถบเลื่อนแนวนอนได้หรือไม่?


3
ไม่ใช้ CSS2 และoverflow:scroll;ไม่มีวิธีแสดงแถบเดียวและไม่แสดงอีกแถบ มันอยู่ในธรรมชาติoverflow:scroll; javascript สามารถทำสิ่งที่ CSS อนุญาตเท่านั้น อย่างไรก็ตามฉันเดาว่าคุณสามารถใช้โอเวอร์โฟลว์: อัตโนมัติคุณก็ไม่รู้ คุณจะอธิบายรายละเอียดเกี่ยวกับ "สิ่งอื่น ๆ ที่เฉพาะเจาะจงกับสถานการณ์ของคุณ" หรือไม่?
tloflin

คำตอบ:


575

คุณสามารถใช้ css แบบนี้:

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

2
ฉันเห็นว่าเป็น CSS3 และมันไม่ทำงานใน Firefox เมื่อฉันทดสอบ ฉันยังเห็นว่านี่เป็นเพียงคุณสมบัติ IE เท่านั้นตั้งแต่วันที่กลับ
วิลเลียมโจนส์

@wiliamjones - ใช้งานได้กับ firefox ... คุณมีหน้าตัวอย่างหรือไม่? อาจเป็นเหตุผลรูปแบบอื่น ๆ ที่ไม่ทำงาน
Nick Craver

@william - นี่คือตัวอย่างที่สมบูรณ์ของมันใช้งานได้ทดสอบใน firefox :) jsfiddle.net/qpZ8k
Nick

คุณพูดถูกมันทำงานกับ Firefox มันเป็นไลบรารี Prototype javascript ที่ไม่สามารถทำงานร่วมกับคุณลักษณะนี้ซึ่งง่ายพอที่จะแก้ไข คุณสมบัตินี้เชื่อถือได้ทั่วเบราว์เซอร์หรือไม่?
วิลเลียมโจนส์

@williamjones - ใช่แล้วโดยปกติแล้วสิ่งเหล่านี้เบราว์เซอร์จะนำมาใช้แล้วมันจะเป็นมาตรฐานในภายหลังในภายหลัง
Nick Craver


22

ปิดการใช้งานแถบเลื่อนแนวนอนอย่างสมบูรณ์โดยการเพิ่มรหัสนี้

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

9

การใช้wrap=virtualในกล่องรูปแบบ HTML ของคุณกำจัดแถบเลื่อนแนวนอนที่ด้านล่างของกล่อง:

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

ดูตัวอย่างได้ที่นี่: http://jsbin.com/opube3/2 (ทดสอบบน FF และ IE)



2
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>


1
.combobox_selector ul {
    padding: 0;
    margin: 0;
    list-style: none;
    border:1px solid #CCC;
    height: 200px;
    overflow: auto;
    overflow-x: hidden;
}

ตั้งค่าขนาด scrolldown 200px overflow-xซ่อนแถบเลื่อนแนวนอนใด ๆ


0

สำหรับฉัน:

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

แน่นอนลบลูกศร

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.