Buttons with horizontal scrolling in tile layout
P粉823268006
P粉823268006 2023-08-31 20:54:51
0
2
508
<p>I have a lot of buttons that scroll vertically in a tile layout, like this: </p> <p> <pre class="brush:html;toolbar:false;"><style> .tile-button { width:33.3%; height:100px; background-color: lightblue; border: solid 1px gray; white-space: normal; maring: 0px; } </style> <body style="margin: 0;"> <div style="width:100%;height:300px;background-color: coral;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> </body></pre> </p> <p>Now I need to do the same thing, but only with horizontal scrolling. Can anyone help me? Thank you very much</p>
P粉823268006
P粉823268006

reply all(2)
P粉060528326

Just add this CSS code 'white-space:nowrap;' in the container DIV.

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

I found the 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>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!