2017-01-10 6 views

答えて

2

アコーディオンのソースコードを調べた後、矢印のcontentプロパティを変更し、Foundationのデフォルト設定を上書きすることができます。これはFoundation's Docsからデフォルトプロパティです:だから

.accordion-title::before { 
    position: absolute; 
    top: 50%; 
    right: 1rem; 
    margin-top: -0.5rem; 
    content: '+'; 
} 

、何が好きにcontentプロパティ変更 - Font Awesome、いくつかのhtml entityまたは何か他のもの:

.accordion-title::before { 
    // Font Awesome implementation: 
    content: "\f000"; 

    // HTML entity: 
    content:"\003e"; 
} 

ハッピー:)

+0

感謝を探るを@エリコネネーター!それは動作します。 – robce

+0

助けてくれると嬉しいです:) @robce – elicohenator

関連する問題