2013-01-24 35 views

回答

8

/分隔在foundation/scss/foundation/components/modules/_ui.scss通過CSS定義:

ul.breadcrumbs { 
    li:before { content: "/"; color: #aaa; } 
    li:first-child:before { content: " "; } 
} 

要改變它,你需要在你的app.css文件來覆蓋這個CSS:

ul.breadcrumbs li:before { content: ">"; } 
1

以下內容添加到你的CSS:

.breadcrumbs li:not(:last-child)::after 
{ 
    content:">"; 
}