sass-site/source/code-snippets/_example-list-nth.html.erb
2018-10-23 13:42:40 -07:00

8 lines
235 B
Plaintext

<% example(autogen_css: false) do %>
@debug nth(10px 12px 16px, 2); // 12px
@debug nth([line1, line2, line3], -1); // line3
===
@debug nth(10px 12px 16px, 2) // 12px
@debug nth([line1, line2, line3], -1) // line3
<% end %>