HTMLのリスト要素を視覚的に階層表示する「StyleMap」
2006年11月08日-
スポンサード リンク
Scott Jehl, Designer/Developer, Boston, MA | Process: StyleMap: Visual Sitemap
If you've ever had to produce a sitemap for a client using tools like Visio or OmniGraffle, you know that it can be tedious to visual organize a complex hierarchy of pages. Having experienced this myself, I developed a simple and efficient way to make a sitemap through the benefits of standards-based HTML and CSS.
HTMLのリスト要素を視覚的に階層表示する「StyleMap」。
dl, dd, dt で定義したリストを次の図のように視覚的に階層表示することが可能です。
HTMLソースは次のようにシンプルかつクリーンなリスト。
<dl id="sitemap">
<dt class="root"><a href="#">Homepage</a></dt>
<dd class="first">
<dl>
<dt><a href="aboutUs.html">aaaAbout Us</a></dt>
<dd class="first"><a href="company.html">Company</a></dd>
<dd><a href="staff.html">Staff</a></dd>
<dd><a href="location.html">Location</a></dd>
<dd class="last"><a href="careers.html">Careers</a></dd>
</dl>
</dd>
検索クローラにも人間にも分かりやすいサイトマップが比較的、お手軽に作れてしまいますね。
これはかなり面白いです。
スポンサード リンク
Advertisements
SITE PROFILE
最新のブログ記事(新着順)
- 立体感がリアルなON・OFFスイッチ実装jQueryデモ
- PHPフレームワークにTwitter,Facebook等の認証を速攻実装できる「Opauth」
- 2012年5月23日 管理人のブックマーク
- PC・スマホ・タブレットで動くクールなHTML5スライドショー実装ができる「Juicebox」
- 既にここまで出来るWebGLのデモ22
- 2012年5月22日 管理人のブックマーク
- CSSな吹き出しを作れるWEBツール「cssarrowplease」
- PHP+Bootstrapで書かれた美しいGitリポジトリビューア「GitList」
- 2012年5月21日 管理人のブックマーク
- CSS3で描かれたシェイプのサンプル集
- 過去のエントリ



















間違いの指摘をしていただける方はメール、あるいはTwitter/FBでお願いします(クリック)



