Styles clés :
white-space:nowrap;/*Le contenu est disposé horizontalement sans retour à la ligne*/
overflow-x:auto; overflow-y:hidden;/*Masquer la partie de débordement. La barre de défilement horizontale apparaît automatiquement et la barre de défilement verticale est masquée*/
Code d'aperçu :
<!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 ">
<tête>
<meta.http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS implémente la disposition horizontale des images, le débordement masque le défilement horizontal</title>
<style.type="text/css">
<!--
.inimg {largeur : 670 px ; hauteur : 395 px ; espace blanc : nowrap ; overflow-x : auto ; overflow-y : masqué ;}
.inimg img {largeur : 670 px; hauteur : 375 px ;}
-->
</style>
</tête>
<corps>
<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>
</corps>
</html>