CSS Knowledge

  • What is CSS
  • External CSS

  • CSS Table
  • CSS span
  • CSS a
  • CSS input
  • CSS HR
  • CSS align
  • CSS LI
  • CSS ul
  • CSS width
  • CSS overflow
  • CSS justify
  • Css Two Column
  • Css blockquote

  • CSS flash
  • More others

    Javascript
    CSS
    PHP

     

    CSS overflow


    CSS overflow Property

    The overflow property sets what happens if the content of an element overflow its area. 

    Inherited: No

    Example

     


    {
    overflow: scroll
    }

    Possible Values

    Value

    Description

    visible

    The content is not clipped. It renders outside the element

    hidden

    The content is clipped, but the browser does not display a scroll-bar to see the rest of the content 

    scroll

    The content is clipped, but the browser displays a scroll-bar to see the rest of the content

    auto

    If the content is clipped, the browser should display a scroll-bar to see the rest of the content

     





















     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

  • Javascript |