+ 1
Hi, i noticed that when i write a table and with all my figures in it, it doesnt display with the lines of the rows and columns.
Tables
3 Answers
+ 1
Ok, let me try it out. Thanks
+ 1
You can also add a border to the table in CSS
table, td{
border: 1px solid black;
border-collapse: collapse:
}
0
Hi,
do you use āborderā attribute in your html or css code?
html example:
<table border=ā1ā>
<tr>
<td> ... </td>
<td> ... </td>
</tr>
example for css:
table {
border: 4px double black;
}