apply the style in table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • krishvasu
    New Member
    • Apr 2010
    • 9

    apply the style in table

    how to apply the css style [bottom space, top space, left space, right space] in outer table.......,
    Attached Files
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    Code:
    table{
    margin-left:30px;
    margin-right:30px;
    margin-top:30px;
    margin-bottom:30px;
    }
    shorthand version:
    Code:
    table{
    margin:30px;
    }

    Comment

    • krishvasu
      New Member
      • Apr 2010
      • 9

      #3
      thank u.........,

      Comment

      Working...