11 lines
218 B
HTML
11 lines
218 B
HTML
<!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>
|