Skip to main content

All Questions

Tagged with
3 votes
1 answer
4k views

Handling paragraphs inside list items with a custom CSS content

This is how a paragraph looks like inside a non-styled list item (<li>): <li> <p> hehehe hehehe hehehe hehehe hehehe hehehe hehehe hehehe hehehe ...
David Gomes's user avatar
  • 5,855
1 vote
2 answers
2k views

How to gain hanging indent list with CSS Counters?

I'm trying to build a 3 level ordered list with CSS counters. ol { counter-reset: paragraph; list-style-type: none; margin-bottom: 1em; font-weight: bold; } ol > li::before { counter-increment: ...
Denis Giffeler's user avatar
1 vote
1 answer
66 views

CSS Content: Adding a style/class

ol:before { counter-increment: section; content: "Article " counter(section) ". "; } How do i add a class to content:? if thats not possible a style will also do Since you're inserting content, ...
SNT's user avatar
  • 313