border.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MARIAfromRIGA
    New Member
    • Dec 2006
    • 2

    border.

    HEllO, guys. please help me to allocate one single border. in my situation its top border of table's cell...i need the rest 3 borders (left right and bottom) to stay invisible.
  • snowdonkey
    New Member
    • Aug 2006
    • 37

    #2
    Use CSS to control the borders of your HTML tables.

    As a very simple example, in the </head> of your document you could say:

    Code:
    <style>
    table
    {
    border-right: 0px;
    border-bottom: 0px;
    border-left: 0px;
    }
    </style>
    removing right, bottom, and left borders from all tables in your document.

    Comment

    • AricC
      Recognized Expert Top Contributor
      • Oct 2006
      • 1885

      #3
      Or you could specify border-top: 1px solid green

      Comment

      • MARIAfromRIGA
        New Member
        • Dec 2006
        • 2

        #4
        thank u very much, guys:)

        Comment

        Working...