Created
February 8, 2012 14:26
-
-
Save tikitikipoo/1769944 to your computer and use it in GitHub Desktop.
パンくずリストの「>」を生成する例
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* パンくずリストの「>」を生成する例 */ | |
/* 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