Html – How to color odd columns of an empty css grid?
Let's say I have a simple html CSS script: <!DOCTYPE html> <html> <head> <style> .grid { display: grid; grid-template-columns: repeat(27, minmax(0, 1fr)); grid-template-rows: repeat(6, minmax(0, 1fr)); height: 50rem; width: 50rem; } </style> </head> <body> <div class="grid"> <!-- Your grid items…