รูปแบบหลัก:
white-space:nowrap;/*เนื้อหาถูกจัดเรียงในแนวนอนโดยไม่มีการตัดคำ*/
overflow-x:auto; overflow-y:hidden;/*ซ่อนส่วนที่เกิน แถบเลื่อนแนวนอนจะปรากฏขึ้นโดยอัตโนมัติ และแถบเลื่อนแนวตั้งถูกซ่อน*/
โค้ดแสดงตัวอย่าง:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml ">
<หัว>
<meta. http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS ดำเนินการจัดเรียงรูปภาพในแนวนอน ส่วนล้นจะซ่อนการเลื่อนในแนวนอน</title>
<style.type="text/css">
-
.inimg {ความกว้าง:670px;ความสูง:395px;สีขาว-space:nowrap;overflow-x:auto;overflow-y:hidden;}
.inimg img {ความกว้าง:670px;ความสูง:375px;}
-
</สไตล์>
</หัว>
<ร่างกาย>
<div class="inimg">
<img src=" " width="670" height="375" alt="img" />
<img src=" " width="670" height="375" alt="img" />
<img src=" " width="670" height="375" alt="img" />
<img src=" " width="670" height="375" alt="img" />
</div>
</ร่างกาย>
</html>