LoginSignup
11
10

More than 5 years have passed since last update.

CSSを用いたパンくず

Last updated at Posted at 2014-09-25

コード

<style>
    ul.pan {

    }
    ul.pan > li {
        display: inline-block;
        padding: 0px;
        margin: 0px
    }
    ul.pan > li:after {
        padding: 5px;
        content: ">";
    }
    ul.pan > li:last-child:after {
        content: " ";
    }
</style>
<ul class="pan">
<li>home</li>
<li>admin</li>
<li>user</li>
</ul>

表示形式

home > admin > user

11
10
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
10