Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @oyesina-paul

    Submitted

    I gave a border bottom solid to my table but it didn't span through the table. it displays as if a vertical line cuts the border bottom at and separates a single line into two. Any idea what might have caused it and how i can resolve it?

    will appreciate your feedback.

    @metazer0

    Posted

    My approach was different, but the table element has a default spacing per td element. Remove it by adding this to the style.css

    .table {
        border-collapse: separate;
        border-spacing: 0
    }
    
    0