• This topic has 1 reply, 2 voices, and was last updated 2 years ago by vako.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #71008
    Alexander T
    Participant
    Premium Member

    Hi,

    Is there a way to not displaying borders when using tables?

    Best
    Alexander

    #71017
    vako
    Keymaster
    Premium Member

    Hi Alexander,

     

    Yes, you can remove borders when using tables in a few ways. One way is to add a style attribute to your table tag and set the border property to “none”. Here’s an example:

    <table style=”border: none;”>

    <tr>

    <td>Cell 1</td>

    <td>Cell 2</td>

    </tr>

    <tr>

    <td>Cell 3</td>

    <td>Cell 4</td>

    </tr>

    </table>

    Another way is to use CSS to target your table and set the border property to “none”. Here’s an example:

    table {

    border: none;

    }

    I hope this helps. Let me know if you have any other questions.

     

    Kind Regards

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.