blob: a756034b28230605623a3b09ce3cb88d7b62f3ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<style>
td::first-letter {
border: inherit;
}
</style>
<table>
<tr>
<td style="border: 10px solid green">
This text should have a green border on the first letter.
</td>
</tr>
</table>
|