Web Analytics Made Easy -
StatCounter Table cell overflow - CodingForum

Announcement

Collapse
No announcement yet.

Table cell overflow

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Table cell overflow

    Hi there,

    In the past I have set the height of a <div> element using css and using that css, asked it to hide any overflow which may occur.

    I was just wandering if it can be done to a table cell as well. If so what is the css i need to use.

    Any ideas ??

    Thanks

  • #2
    td {
    width: 200px;
    height: 120px;
    overflow: scroll;
    }

    For example.
    jasonkarldavis.com

    Comment

    Working...
    X