blob: 7e28ef85d471761b41977fb80e7f38a7e523067d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<style>
div#details {
display: inline-block;
}
</style>
<body>
Details element:
<div id="details">
<div>Summary</div>
<p>This is the details.</p>
</div>
</body>
</html>
|