這似乎像我的scss默認關閉有序列表樣式,這似乎有點奇怪/討厭。任何人都可以解釋爲什麼它會這樣做嗎?爲什麼Compass/Scss設置列表樣式:默認沒有?
這是被神祕添加到我的CSS行:
/* line 24, C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
ol, ul {
list-style: none;
}
小splunking表明了這些行_utilities.scss文件的結果:
ol, ul {
@include reset-list-style; }
// Reset the list style of an element.
@mixin reset-list-style {
list-style: none; }
我m解決這個問題,加入:
ol {
list-style-type: decimal;
}
我的scss文件。修改_utilities.scss文件會更好嗎?這聽起來像是如果我這樣做,它可能會搞砸scss如何轉換爲css的ol,ul元素?
也似乎很奇怪,我不能添加'scss'標籤到這個問題。 – CorayThan
'scss'標籤是'sass'的同義詞。 – KatieK