Html – How can I specificly "exclude" an element from a css grid/subgrid or position it correctly in a complex entanglement of nested grids…
* { outline: 1px solid rgba(255, 0, 0, .2); } ol { *:not(li) { grid-area: none; /* hmmm... this is not right*/ } padding: 0; list-style: none; display: grid; grid-template-columns: min-content 1fr; grid-column: subgrid; li { grid-column: 1 / -1;…