What is the best practice regarding the following issue: Given a block that implements css grid ("grid" class), that has a 10-columns wide nested block ("block" class). The nested block contains nested elements ("element" class).
How can I position the elements inside the nested block to be aligned according to the columns defined by the grid block?
<div className="grid">
<div className="block block--span-10">
<div className="element" />
<div className="element" />
<div className="element" />
</div>
</div>