I'm trying to figure out how I could use CSS grid for some asymmetric layouts like this:
<h3>Two-Fifths - Three-Fifths</h3>
<div class="cols">
<div class="two-fifths">
<p>This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.</p>
</div>
<div class="three-fifths">
<p>This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.</p>
</div>
</div>
<hr />
<h3>One-Sixth - Five-Sixths</h3>
<div class="cols">
<div class="one-sixth">
<p>This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.</p>
</div>
<div class="five-sixths">
<p>This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.</p>
</div>
</div>
I believe the main issue is defining the column with on the child element. I hope somebody can help. Thanks.