mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
18 lines
346 B
HTML
18 lines
346 B
HTML
<!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>
|