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
 
     
     
    