주요 스타일:
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="텍스트/css">
<!--
.inimg {너비:670px;높이:395px;white-space:nowrap;overflow-x:auto;overflow-y:hidden;}
.inimg img {너비:670px;높이:375px;}
-->
</style>
</head>
<본문>
<div 클래스="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>
</body>
</html>