How can i make the table border and cells like a single line?
How can i make the table border and cells like a single line?
I tried to set the table and cells borderwidth to 1 but unfortunately still looks wide and have space in between, i want to set it as plainly single lines on the borders of table and cells. just like the border here in the text editor box.
-
- Site Admin
- Posts: 17761
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: How can i make the table border and cells like a single line?
Table.CellBorderWidth := 1;
Table.CellHSpacing := -1;
Table.CellVSpacing := -1;
Table.BorderWidth := 0;
Table.CellHSpacing := -1;
Table.CellVSpacing := -1;
Table.BorderWidth := 0;
Re: How can i make the table border and cells like a single line?
Thanks a lot sir