Skip to content

Instantly share code, notes, and snippets.

@lomefin
Created December 24, 2013 18:10
Show Gist options
  • Save lomefin/8116409 to your computer and use it in GitHub Desktop.
Save lomefin/8116409 to your computer and use it in GitHub Desktop.
Inline list generator in natural language (Spanish).
ul.inline-list li:after {
content: ", ";
}
ul.inline-list li:last-child:after {
content: ". ";
}
ul.inline-list li:nth-last-child(2):after {
content: " y ";
}
ul.inline-list, ul.inline-list li{
display: inline;
margin: 0;
padding: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment