Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> p:nth-of-type(odd) { background: #1c87c9; } p:nth-of-type(even) { background: #8ebf42; } </style> </head> <body> <h2>Пример селектора nth-of-type()</h2> <p>Параграф 1</p> <p>Параграф 2</p> <p>Параграф 3</p> <p>Параграф 4</p> <p>Параграф 5</p> <p>Параграф 6</p> <p>Параграф 7</p> <p>Параграф 8</p> <p>Параграф 9</p> <p>Параграф 10</p> </body> </html>