Schaltflächen mit horizontalem Scrollen im Kachellayout
P粉823268006
2023-08-31 20:54:51
<p>Ich habe viele Schaltflächen, die in einem Kachellayout vertikal scrollen, wie folgt: </p>
<p>
<pre class="brush:html;toolbar:false;"><style>
.tile-button {
Breite: 33,3 %;
Höhe: 100 Pixel;
Hintergrundfarbe: hellblau;
Rand: einfarbig 1 Pixel grau;
Leerraum: 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>Jetzt muss ich dasselbe tun, aber nur mit horizontalem Scrollen.
Kann mir jemand helfen?
Vielen Dank</p>
只需在容器DIV中添加此CSS代码 'white-space:nowrap;'。
我找到了解决方案: