Quick HTML Question.....

Collapse

Recommended Videos

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ehh
    Hall Of Fame
    • Mar 2003
    • 28960

    #1

    Quick HTML Question.....

    I'm trying to create a frame/table that has a shadowed border. EG: The bottom and the right side of the table's border will be black/gray, as if there was light coming from the top left.

    I can't get the table to have a shadow though, just a gray or black border around the entire thing. I checked my usual reference sites (HTMLAve.com, etc) and couldn't find anything on it.

    Anyone know how to do this?
    "You make your name in the regular season, and your fame in the postseason." - Clyde Frazier

    "Beware of geeks bearing formulas." - Warren Buffet
  • shugknight
    MVP
    • Oct 2004
    • 4585

    #2
    Re: Quick HTML Question.....

    Normally the border width is determined by the < table border="1" > is the smallest border..

    < table border="5" > is a slightly bigger border.

    Does that help you?

    Comment

    • ehh
      Hall Of Fame
      • Mar 2003
      • 28960

      #3
      Re: Quick HTML Question.....

      Well the problem w. that is that it effects the entire border (all sides), I want to change just the bottom and right side of the table to give it a "shadow effect" from an angle.
      "You make your name in the regular season, and your fame in the postseason." - Clyde Frazier

      "Beware of geeks bearing formulas." - Warren Buffet

      Comment

      • aukevin
        War Eagle, Go Braves!
        • Dec 2002
        • 14700

        #4
        Re: Quick HTML Question.....

        like this: < table border="1" width="100%" bordercolordark="#000000" bordercolorlight="#FFFFFF" > maybe?

        That way seems to work in IE, not firefox. If that is what you are looking for.
        Last edited by aukevin; 10-02-2006, 01:04 PM.

        Atlanta Braves
        - Auburn Tigers - Nashville Predators

        Comment

        • dkgojackets
          Banned
          • Mar 2005
          • 13816

          #5
          Re: Quick HTML Question.....

          I would put no border information into the original table and make a 0 height table on the bottom with the border color of your choice, then a 0 width table to the immediate right.

          Comment

          Working...