<!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="/assets/reset.css" rel="stylesheet"> <link href="setup.css" rel="stylesheet"> <link href="style.css" rel="stylesheet"> </head> <body> <ol> <li> <p>Item 1</p> </li> <li> <p>Item 2 <br>with line <br>breaks</p> </li> <li> <p>Item 3 <br>also</p> </li> <li> <p>Item 4</p> </li> <li> <p>Item 5</p> </li> </ol> </body> </html>
body { font-family: sans-serif; padding: 20px; } ol { background-color: gold; } ol:not(:first-child) { margin-top: 20px; } li { background-color: tomato; border-bottom: 2px solid firebrick; border-right: 2px solid firebrick; padding: 5px; }
ol { display: flex; height: 120px; } li { order: 0; } /* Default. */ li:nth-child(1) { background-color: crimson; order: 1; } li:nth-child(2) { background-color: hotpink; order: 2; } li:nth-child(5) { background-color: lightsalmon; order: -1; /* Negative numbers move stuff to the start! */ }