Schlüsselstile:
white-space:nowrap;/*Der Inhalt wird horizontal ohne Umbruch angeordnet*/
overflow-x:auto; overflow-y:hidden;/*Den Überlaufteil ausblenden. Die horizontale Bildlaufleiste erscheint automatisch und die vertikale Bildlaufleiste ist ausgeblendet*/
Vorschaucode:
<!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 ">
<Kopf>
<meta.http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS implementiert die horizontale Anordnung von Bildern, Überlauf verbirgt horizontales Scrollen</title>
<style.type="text/css">
<!--
.inimg {width:670px;height:395px;white-space:nowrap;overflow-x:auto;overflow-y:hidden;}
.inimg img {width:670px;height:375px;}
->
</style>
</head>
<Körper>
<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>
</body>
</html>