Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2012-10-15から1日間の記事一覧

details要素 summary要素

details要素は、表示したり非表示にしたりできる追加の詳細情報を表します。summary要素は、その詳細情報のサマリーを表します。 使用例 <html lang="ja"> <head> <title>Hello! HTML5</title> <meta charset="UTF-8"> </head> <body> <form> <p> <details> <summary>処理中です。しばらくお待ちください。<br /> <progress value="30" max="100" /></summary> <p>100件中、31件目を処理しています。<…</p></details></p></form></body></html>