Bonjour Est ce qu'il y a un moyen pour désactiver (ou cacher) les acsenseurs (scrollbar) d'une page html (ou php) ? Si c'est possible sans passer par Java script, sinon c'est pas grave... Merci d'avance
ouais avec un overflow si tu veux desactiver l'overflow sur la page complète : HTML, BODY { overflow:hidden} si c'est seulement sur un objet idem #idobjet{overflow:hidden}
Merci beaucoup, ça marche
et si on veut éviter juste la scrollbar de gauche à droite mais qu'on veut garder celle de haut en bas?
Si t'as bien défini tes dimensions, ça devrait pas poser de problèmes
bah justement jcomprend pas quoi que jfasse comme dimension ca foire j'utilise un tableau dans mon div dont g définit les dimension(bon je sais c un tableau) donc mon div a une largeur (width="920px" et mon tableau peut faire 70px de large il me met tjrs la scrollbar ????
width="920px"... Ca veut dire que t'as pas mis ça dans le CSS ?
bah si sauf pour le tableau c'est width:920px;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="css/style.css" rel="stylesheet" type="text/css"> <link href="css/styleDiv.css" rel="stylesheet" type="text/css"> <title> MAPAGE </title> </head> <body bgcolor="#f8f5C8"> <div class="Title"> <h1> GALERIE PHOTOS </h1> </div> <div class="BarreChoix"> <img src="images/barre-superieure.png"> </div> <div class="ChoixBarre"> <b> <li><a href="galerie.php" style="width: 130px;">TOUT</a></li> <li><a href="galerie.php?cat=cat1" style="width: 130px;">CATEGORIE1</a></li> <li><a href="galerie.php?cat=cat2" style="width: 130px;">CATEGORIE2</a></li> <li><a href="galerie.php?cat=cat3" style="width: 130px;">CATEGORIE3</a></li> <li><a href="galerie.php?cat=cat4" style="width: 130px;">CATEGORIE4</a></li> </b> </div> <div class="Page_contenu"> <?php if(isset($_GET['cat'])) { $cat=$_GET['cat']; } else { $cat=""; } $result=glob('images_galerie/'.$cat.'*.jpg'); echo "<table width='100px'><tr align='center'>"; for($i=0;$i<sizeof($result);$i++) { echo "<td><img src='".$result[$i]."'></td>"; if($i%4==3) { echo "</tr><tr align='center'>"; } } echo "</tr></table>"; ?> </div> <div class="Bas"> <img src="images/barre-inferieure.png"> </div> </body> </html>
enfin voila mon code si quelquun pouvait y jeter un coup doeil??