blob: 2ea92dc439b59b23420bb6e609d8633288d1a670 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<style>
details::first-line { color: green; }
* { column-count: 1 }
</style>
<body>
<table id="b"><tbody></tbody></table>
<details id="a" open>
<summary hidden></summary>
This is the details</details>
|