Title: Borders
Last modified: August 22, 2016

---

# Borders

 *  Resolved [TheBristolMan](https://wordpress.org/support/users/thebristolman/)
 * (@thebristolman)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/borders-15/)
 * I have a row where the background of each cell is the same color. I would like
   to put a color border (or white line) between the cells so each cell look like
   a button unto itself. What CSS can be used to make a border between cells in 
   a row? If it is not breaking to bank, can the CSS decall out which side of the
   cell the border will be on?
 * [https://wordpress.org/plugins/tablepress/](https://wordpress.org/plugins/tablepress/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/borders-15/#post-5203559)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * Some CSS like this should work:
 *     ```
       .tablepress-id-123 td {
         border: 1px solid #FFFFFF;
       }
       ```
   
 * To only have borders on some side, you can change the CSS to e.g.
 *     ```
       .tablepress-id-123 td {
         border-left: 1px solid #FFFFFF;
         border-right: 1px solid #FFFFFF;
       }
       ```
   
 * Regards,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘Borders’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

## Tags

 * [border](https://wordpress.org/support/topic-tag/border/)

 * 1 reply
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/borders-15/#post-5203559)
 * Status: resolved