Maison  >  Questions et réponses  >  le corps du texte

Boutons avec défilement horizontal dans la disposition en mosaïque

<p>J'ai beaucoup de boutons qui défilent verticalement dans une disposition en mosaïque, comme ceci : </p> <p> <pre class="brush:html;toolbar:false;"><style> .tile-bouton { largeur : 33,3 % ; hauteur : 100 px ; couleur de fond : bleu clair ; bordure : gris uni de 1 px ; espace blanc : normal ; mariage : 0px ; } </style> <body style="marge : 0;"> <div style="width:100%;height:300px;background-color: corail;overflow-y: scroll;font-size:0px;"> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <button class="tile-button">title</button> <div> </corps></pré> </p> <p>Maintenant, je dois faire la même chose, mais uniquement avec un défilement horizontal. Quelqu'un peut-il m'aider? Merci beaucoup</p>
P粉823268006P粉823268006437 Il y a quelques jours555

répondre à tous(2)je répondrai

  • P粉060528326

    P粉0605283262023-09-01 14:46:59

    Ajoutez simplement ce code CSS 'white-space:nowrap;' dans le conteneur DIV.

    <div style="width:100%;height:300px;background-color: coral;overflow-y: scroll;font-size:0px;white-space:nowrap; ">

    répondre
    0
  • P粉156415696

    P粉1564156962023-09-01 10:50:41

    J'ai trouvé la solution :

    <style>
    /* webkit, per chrome, edge, safari */
    ::-webkit-scrollbar {
        height: 12px;
        width: 5px;
        background: #aaa;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #393812;
        -webkit-border-radius: 1ex;
        -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
    }
    
    ::-webkit-scrollbar-corner {
        background: #000;
    }
    
    /* per firefox */
    .custom-scrollbar {
        scrollbar-width: thin;
        scrollbar-color: #393812 #aaa;
    }
    
    .container {
      width: 100%; 
      height: 300px; 
      border: 1px solid green;
      overflow-x: scroll;
      overflow-y: hidden;
      font-size:0px;
    }
    
    .inner {
      height: 100%;
      white-space:nowrap; 
    }
    
    .floatLeft {
      width: 150px;
      margin:0px; 
      display: inline-block;
    }
    
    button {
      height: 94px;
      width: 150px;
      margin: 0px;
      border: solid 1px gray;
    }
    </style>
    
    <div class="container custom-scrollbar">
       <div class="inner">
           <div class="floatLeft">
             <div>
               <button>Cap1</button>
             </div>
             <div>
               <button>Cap2</button>
             </div>
             <div>
               <button>Cap3</button>
             </div>
           </div>
           <div class="floatLeft">
             <div>
               <button>Cap1</button>
             </div>
             <div>
               <button>Cap2</button>
             </div>
             <div>
               <button>Cap3</button>
             </div>
           </div>
           <div class="floatLeft">
             <div>
               <button>Cap1</button>
             </div>
             <div>
               <button>Cap2</button>
             </div>
             <div>
               <button>Cap3</button>
             </div>
           </div>
           <div class="floatLeft">
             <div>
               <button>Cap1</button>
             </div>
             <div>
               <button>Cap2</button>
             </div>
             <div>
               <button>Cap3</button>
             </div>
           </div>
           <div class="floatLeft">
             <div>
               <button>Cap1</button>
             </div>
             <div>
               <button>Cap2</button>
             </div>
             <div>
               <button>Cap3</button>
             </div>
           </div>
           <div class="floatLeft">
             <div>
               <button>Cap1</button>
             </div>
             <div>
               <button>Cap2</button>
             </div>
             <div>
               <button>Cap3</button>
             </div>
           </div>
       </div>
    </div>

    répondre
    0
  • Annulerrépondre