Results 1 to 6 of 6

Thread: [RESOLVED] Why isn't this working in... Firefox?

  1. #1

    Thread Starter
    Hyperactive Member Datacide's Avatar
    Join Date
    Jun 2005
    Posts
    309

    Resolved [RESOLVED] Why isn't this working in... Firefox?

    I'm using NoWrap in this project I'm developing. I placed it into a <div> tag so that it can only scroll across. However it's not working in Firefox. Yes, I did say it's not displaying properly in Firefox.

    My guess is that it's not a standard attribute, so is there another way to acheive non-breaking lines?
    Last edited by Datacide; Jan 30th, 2006 at 01:39 PM.
    PHP in your FACE!

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Why isn't this working in... Firefox?

    Try <div nowrap="nowrap">

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Why isn't this working in... Firefox?

    Or use inline CSS

    style="white-space:nowrap;"

  4. #4

    Thread Starter
    Hyperactive Member Datacide's Avatar
    Join Date
    Jun 2005
    Posts
    309

    Re: Why isn't this working in... Firefox?

    Thanks, i found that <nobr></nobr> works.
    PHP in your FACE!

  5. #5
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: [RESOLVED] Why isn't this working in... Firefox?

    <nobr> and other presentational attributes are deprecated. You should use the CSS rule instead.
    Code:
    div.nonbreaking
    {
        white-space: nowrap;
    }
    HTML Code:
    <div class="nonbreaking">
       lots of stuff
    </div>

  6. #6
    New Member
    Join Date
    Sep 2008
    Posts
    1

    Thumbs up Re: [RESOLVED] Why isn't this working in... Firefox?

    Thanks a lot. The white-space:nowrap works like charm

Posting Permissions

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



Click Here to Expand Forum to Full Width