-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathTableBorderless2.js
More file actions
39 lines (37 loc) · 552 Bytes
/
TableBorderless2.js
File metadata and controls
39 lines (37 loc) · 552 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#tabela1 {
border: 0px;
margin: 0px auto;
width: 500px;
height: 600px;
}
#tabela2 {
border: 1px solid;
margin: 0px auto;
width: 500px;
height: 600px;
}
<table id="tabela1">
<tr>
<td>
texto1
</td>
</tr>
<tr>
<td>
texto2
</td>
</tr>
</table>
<table id="tabela2">
<tr>
<td>
texto1
</td>
</tr>
<tr>
<td>
texto2
</td>
</tr>
</table>
<!-- https://pt.stackoverflow.com/q/47707/101