以逗号分隔的句子显示OL/UL列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以逗号分隔的句子显示OL/UL列表相关的知识,希望对你有一定的参考价值。
Displays html list as a gramatically correct English sentence. For example <ul class="commaList"> <li>one</li> <li>two</li> <li>three</li> <li>four</li> </ul> Would be displayed as: One, two, three and four.
/* display ordered list as comma list */ ul.commaList li:after{ content: ','; padding-right: 5px; } ul.commaList li:first-child { text-transform: capitalize; } ul.commaList li:nth-last-child(2):after { content: ''; padding-right: 5px; } ul.commaList li:last-child:after { content: '.'; clear: both; } ul.commaList li:last-child:before { content: 'and '; padding-right: 0; } ul.commaList li:only-of-type:before { content: ''; padding: 0; }
以上是关于以逗号分隔的句子显示OL/UL列表的主要内容,如果未能解决你的问题,请参考以下文章