YN20
YN20
KPCKevin Powell - Community
Created by YN20 on 1/5/2025 in #front-end
Landing Page Using Grid Methodology
I am making a sample page using only CSS grid for the rows and different sections. I am considering to use a container in each section and apply the grid to that container. Or use a child row, then apply my grid for the elements. Any good flow to follow. As an example:
<section class="services_section">
<div class="container">
<div class="grid">
<div class="col">
</div>
</div>
</div>
</section>

<section class="services_section">
<div class="container">
<div class="grid">
<div class="col">
</div>
</div>
</div>
</section>

Is this flow considered okay, or adding the grid class to the container to reduce an HTML. Feedback much appreciated.
5 replies
KPCKevin Powell - Community
Created by YN20 on 11/23/2024 in #front-end
Pure CSS and HTML Creating Layout and naming elements
Hello I have been starting to use pure CSS more often recently and I want to know if there is a specific guideline used when creating the structure, for example if we use bootstrap we have the order of container>row>col l like that. Is something like that needed here.? Secondly, when we are writing, is it good to write CSS for all rows and columns generally or style each row with its own unique class.? Thank you
19 replies
KPCKevin Powell - Community
Created by YN20 on 11/4/2024 in #front-end
hello i am implementing a small app and i am using sass i found that there is structure called 7-1
https://dev.to/technoph1le/a-modern-sass-folder-structure-330f for a basic project can we go with less complex structure?
14 replies