Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私が持っているhamlのulです
.content .testing .testing-ul2 %ul %li a b c .testing-ul2 %ul %li d e f
•abc
•デフォルト
sass の箇条書きを削除するにはどうすればよいですか?
有効な CSS は有効な SASS ではなく、有効な SCSS です。
SASS を有効にするには、中括弧とセミコロンを取り除く必要があります。
これがあなたが望むものです:
.content .testing ul list-style: none
有効な CSS は有効な SCSS です:
ul { list-style: none; }
必要に応じてセレクターを具体的にします (.testing ulなど)。
.testing ul