blob: 9294283d5256978d94f1d4731d8d1ea39e6cb6b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<style>
table {
border-collapse: collapse;
}
td {
width: 100px;
height: 100px;
border: 1px solid black;
}
td#target {
border-style: none;
}
</style>
<table>
<tr><td></td><td></td></tr>
<tr><td></td><td id="target"></tr>
</table>
|