-1

i'm trying to put a horizontal scroll in my page or in a specific .

I have a normal page in primefaces, and i need to put the in a horizontal way, how can i put the scroll in this specific div that contain the forms ?

edit1 :

    <div class="col-md-1" style="overflow-x:scroll; width:2000px">
      <div class="row">
        <p:fieldset>
          <campo:simples label="Data Referencia" />
          <div class="col-md-2">
            <div class="row">
              <campo:radio enumClass="TipoTituloEnum" label="Situação" tamanho="1" tamanhoTotal="1" columns="1" layout="grid">
              </campo:radio>
            </div>
          </div>
        </p:fieldset>
      </div>
    </div>

I try this ^^ but the scroll didn't appear Edit2: The scroll appear, but disabled

Look ^^ the component overflow the screen but the scroll didn't appear

AliNajafZadeh
  • 1,216
  • 2
  • 13
  • 22

1 Answers1

3

Using overflow-x:auto will do the trick

 .col-md-1{
    overflow-x:scroll;
 }
 //If you don't want disabled scroll bar 
 .col-md-1{
    overflow-x:auto;
 }
Roy
  • 7,811
  • 4
  • 24
  • 47
Skyyy
  • 1,539
  • 2
  • 23
  • 60