IE horizontal rules made to look like NN's?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paradox

    IE horizontal rules made to look like NN's?

    Hi, I'm one of the staff on a website, we just updated to a new layout
    and are still ironing it out. While checking to see if it looked
    alright in NetScape Navigator, I noticed the horizontal rules which
    I'd made a fairly boring green color in IE looked like they'd been
    chisled into the BG in Netscape (cool). Which looked a lot better
    given the background was a sort of marble set up.

    Is there a way in CSS to make IE's HRs look like NN's?

    Heres the URL. You can see what I mean if you have NN and IE.
    不断扩大线上游戏规模,因为我奥篮球平台设计精巧,星空体育全站官网为您提供可靠安心的游戏环境.,专注体育投注二十年。


    Please don't try to validate it. One of the other webmasters added a
    bunch of scripts whose evil influences I haven't been able to purge
    completely yet.
  • Lasse Reichstein Nielsen

    #2
    Re: IE horizontal rules made to look like NN's?

    Paradox@nerfer. every1.net (Paradox) writes:
    [color=blue]
    > Is there a way in CSS to make IE's HRs look like NN's?[/color]

    Remove the rule
    hr
    {
    color:#030;
    }

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit. html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    • Jacqui or (maybe) Pete

      #3
      Re: IE horizontal rules made to look like NN's?

      In article <bb5b9b88.03071 02231.58ec5c47@ posting.google. com>,
      Paradox@nerfer. every1.net says...[color=blue]
      > Hi, I'm one of the staff on a website, we just updated to a new layout
      > and are still ironing it out. While checking to see if it looked
      > alright in NetScape Navigator, I noticed the horizontal rules which
      > I'd made a fairly boring green color in IE looked like they'd been
      > chisled into the BG in Netscape (cool). Which looked a lot better
      > given the background was a sort of marble set up.
      >
      > Is there a way in CSS to make IE's HRs look like NN's?
      >[/color]
      Try something like:

      hr {
      background: #272;
      border-bottom: solid 1px white ;
      border-top: solid 1px #444;
      color: #cfc;
      height: 2px;
      }

      Example: http://porjes.haxorz.org/hr.html

      For fancier hr styling see:



      Comment

      • Jacqui or (maybe) Pete

        #4
        Re: IE horizontal rules made to look like NN's?

        In article <fzldz99b.fsf@h otpop.com>, lrn@hotpop.com says...[color=blue]
        > Paradox@nerfer. every1.net (Paradox) writes:
        >[color=green]
        > > Is there a way in CSS to make IE's HRs look like NN's?[/color]
        >
        > Remove the rule
        > hr
        > {
        > color:#030;
        > }
        >[/color]
        That's a considerably better answer than mine!

        Comment

        Working...