Table in HTML with fine line borders

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Louise06
    New Member
    • Feb 2007
    • 26

    Table in HTML with fine line borders

    Hi All,

    Could you advise me on how to get a Table in HTML with fine line borders?
    I mainly work with pixels.

    Thanks

    Louise
  • meenakshia
    New Member
    • Jun 2008
    • 33

    #2
    hi
    use border inside the table tag
    that is
    <table border=1>
    where 1 is the width of the border around the table

    hope this would help.
    smile always:)
    anand

    Comment

    • hsriat
      Recognized Expert Top Contributor
      • Jan 2008
      • 1653

      #3
      [code=css]table {
      border-collapse:collap se;
      }[/code]
      See this tutorial.

      Comment

      • harshmaul
        Recognized Expert Contributor
        • Jul 2007
        • 490

        #4
        Originally posted by meenakshia
        hi
        use border inside the table tag
        that is
        <table border=1>
        where 1 is the width of the border around the table

        hope this would help.
        smile always:)
        anand
        This one is cot advisable... you should use the css aproach....

        Code:
        table tr td{
        border: 1px solid #000000;
        }

        Comment

        Working...