Skip to main content

[Imported] HTML Table Borders

Comments

1 comment

  • Permanently deleted user

    Have you tried using the style or border attributes for your tables?

    <table style="border:1px solid black;">
    or try

    <table border="1">

    Or you can use CSS:

    <style>
    table, th, td {
    border: 1px solid black;
    }
    </style>

    You can do a simple find and replace in your excel documents and re-upload. I would definitely do a test run first though and find which method works best for you. Good luck!

    0

Please sign in to leave a comment.