sass-site/source/code-snippets/_example-list-nth.html.erb
2019-09-04 17:56:16 -07:00

8 lines
255 B
Plaintext

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