Results 1 to 4 of 4

Thread: Horizontal ScrollBar

  1. #1
    Join Date
    Oct 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Horizontal ScrollBar

    I need a horizantal ScrolBar to be available at the Bottom of my table,since i have many coloums. Plz give me the code

  2. #2
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    overflow:auto ?
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  3. #3
    Join Date
    Oct 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default horizaltal scrollbar

    pls give me the code

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Try something like:

    Code:
    <style type="text/css">
    
    table.scrolling{
    width: 700px;
    overflow-x: scroll;
    }
    
    </style>
    
    <table class="scrolling">
    "
    "
    </table>
    The overflow-x property is what triggers the horizontal scrollbar, though it's not supported in earlier versions of Firefox 1.x.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •