I just got a html template with sections and a few things are not clear about them.
The file contains a section look like this:
<section id="section-name" class="row">
</section>
As I already found simple <section> </section>
tags, I'm confused about a few things. Mainly, what does the section id's? Are they referring to CSS rules or they can be used without any connection with the CSS? So far I couldn't find anything in my CSS file related to the used section names so I assume the id's are named based on practical reasons that helps to structure the code.
Am I right that section id's don't have any connections with CSS? Or they can refer to CSS options but they can also work without any CSS related connection?