{"id":177032,"date":"2014-07-30T16:44:51","date_gmt":"2014-07-30T23:44:51","guid":{"rendered":"http:\/\/css-tricks.com\/?page_id=177032"},"modified":"2022-10-18T06:19:09","modified_gmt":"2022-10-18T13:19:09","slug":"grid-row-column","status":"publish","type":"page","link":"https:\/\/css-tricks.com\/almanac\/properties\/g\/grid-row-column\/","title":{"rendered":"grid-row \/ grid-column"},"content":{"rendered":"\n

The grid-row<\/code> and grid-column<\/code> properties define which row or column an element will be displayed on.<\/p>\n\n\n\n

.element {\n  grid-row: 1 \/ 2;\n  grid-column: 3 \/ -1;\n}<\/code><\/pre>\n\n\n\n

Here’s an explicit 3 \u00d7 3 grid where these properties are used to place grid items onto it in specific places:<\/p>\n\n\n\n