blob: d975ecfc72bd7e5ae436473a19ebbd0918536f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<style>
div#details::first-line {
color: blue;
}
</style>
<body>
<div id="details">
<span>Summary
<div>Block in summary</div>
</span>
<span>This is the details.</span>
</div>
</body>
</html>
|