search

Home  >  Q&A  >  body text

Add vertical lines between table columns in premium PDF templates in NetSuite using inline CSS

<p>I want to add vertical lines between each column. I need to use inline CSS because there are 2 tables. I only want to apply rows to 1 table. please help! </p>
P粉125450549P粉125450549459 days ago581

reply all(1)I'll reply

  • P粉521748211

    P粉5217482112023-09-01 10:22:52

    Add the class name to the table where you want to display the border.

    <table class='barred'>

    Then in your CSS section

    
    .barred {border-collapse:collapse;}
    .barred td{ border-left:1px solid black;}
    

    reply
    0
  • Cancelreply