Skip to content

Instantly share code, notes, and snippets.

@tikitikipoo
Created February 8, 2012 14:26
Show Gist options
  • Save tikitikipoo/1769944 to your computer and use it in GitHub Desktop.
Save tikitikipoo/1769944 to your computer and use it in GitHub Desktop.
パンくずリストの「>」を生成する例
/* パンくずリストの「>」を生成する例 */
/* li + li:before */
/* li要素の直後にあるli要素の前に、新しい要素を生成してスタイルを適用する */
.nav-topicpath li * li:before {
margin : 0 3px;
content: ">";
}
// html
<nav class="nav-topicpath">
<ul>
<li>hoe</li>
<li>fuga</li>
</ul>
</nav>
/* 魅せるiPhoneサイトP.66~69より抜粋 */
/* 備忘録 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment