My Space Proxy

Ultimate Web Space Tools for any Skill Level

web programming and design, html error in style tag?


i wanna add horizontal scroll bar to a div, im using ‘overflow=auto ‘ and ‘ white-space=no wrap’ in style tag but it doesn’t work what should i do?

Make sure you are using a correct syntax:

<div style="width: 200px; height: 200px; border-style: solid; border-width: thin; overflow: auto; white-space: nowrap"> … </div>

This is the correct syntax:
overflow: auto; white-space: nowrap

This is NOT correct:
overflow= auto; white-space= no wrap

It worked fine with my IE.



3 Responses to “web programming and design, html error in style tag?”

  1. Swan Says:

    you can set overflow: auto and give a maximum fixed height and width.

    there are options in proposed CSS3 extension to set scrollbars independently
    overflow: auto;
    overflow-y: hidden;

    for IE8:
    -ms-overflow-y: hidden;
    References :

  2. Lucy Girl Says:

    maybe this will give you some ideas
    http://www.echoecho.com/dzine01002.htm
    References :

  3. Soheil Says:

    Make sure you are using a correct syntax:

    <div style="width: 200px; height: 200px; border-style: solid; border-width: thin; overflow: auto; white-space: nowrap"> … </div>

    This is the correct syntax:
    overflow: auto; white-space: nowrap

    This is NOT correct:
    overflow= auto; white-space= no wrap

    It worked fine with my IE.
    References :

Leave a Reply