HTML / CSS question...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • goBigtime
    Confirmed User
    • Nov 2002
    • 7761

    #1

    HTML / CSS question...

    .blah{background:#fbfbfb;border:1px solid #666666}

    I am switching this CSS back to straight HTML...

    I've got:

    -- table width="700" border="1" cellpadding="10" cellspacing="0" bordercolor="#666666" bgcolor="fbfbfb" --

    But see where it sais solid (for the bordr I assume)... how do I represent that in HTML?
    Last edited by goBigtime; 07-03-2003, 07:57 AM.
  • roly
    Confirmed User
    • Aug 2002
    • 1844

    #2
    i can't see what you've already got but you could have

    cellspacing="0" border="1"

    which gives you a solid border

    Comment

    • JDog
      Confirmed User
      • Feb 2003
      • 7453

      #3
      Originally posted by goBigtime
      .blah{background:#fbfbfb;border:1px solid #666666}

      I am switching this CSS back to straight HTML...

      I've got:

      <table width="700" border="1" cellpadding="10" cellspacing="0" bordercolor="#666666" bgcolor="fbfbfb">

      But see where it sais solid (for the bordr I assume)... how do I represent that in HTML?
      you can't choose the border type in plain HTML. There is only one border type, you just have to change the border parameter to a different value to get a different thickness!

      jDOG
      NSCash now powering ReelProfits.com
      ALSO FEATURING: NSCash.com :: SoloDollars.com :: ReelProfits.com :: BiminiBucks.com :: VOD
      PROGRAMS COMING SOON: Greedy Bucks :: Vengeance Cash
      NOW OFFERING OVER 60 SITES
      CONTACT :: JAMES SMITH :: CHIEF TECHNOLOGY OFFICER :: ICQ (711385133)

      Comment

      • goBigtime
        Confirmed User
        • Nov 2002
        • 7761

        #4
        Doh.

        Yeah the border I have right now is too thick... just by a hair though.

        Hrmf.

        Comment

        • Sassyass
          Confirmed User
          • Dec 2002
          • 1101

          #5
          " <" table border="1" bordercolor="#666666" ">"

          Comment

          • goBigtime
            Confirmed User
            • Nov 2002
            • 7761

            #6
            Sorry, didn't notice that my vbulletin gobbled my code there.

            Anyway I spose I'll just use the existing CSS for this... it seems to produce a thinner line.

            One way I know of to make a thin lined border in straight HTML is to put a 699 pixel table within a 700 pixel table that has border=0, but set the border colors anyway.

            Then since your 699 pixel table has a .5 pixel difference on all the sides, you'll get a thin table border that you can make nice rounded headers/footers to match up against.
            Last edited by goBigtime; 07-03-2003, 08:01 AM.

            Comment

            Working...