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.
我有以下CSS:
ul.arbo { margin-top: 0.5em; } ul.arbo li {color padding-bottom: 0.333em; } ul.arbo li:last-child { color: #333; }
我可以使用 Less 实现简单的 CSS。但是如何实现 li:last-child?
尝试:
ul.arbo { margin-top: 0.5em; li { color: #444; padding-bottom: 0.333em; &:last-child { color: #333; } } }