JSFiddle - React, Tailwind, and code Playground
by omarjuvera
HTML
<main>
<section id="context">
main content
</section>
<section id="comercials">
testimonials
</section>
</main>
CSS
main {
border: 2px solid blue;
}
#context {
position: relative;
margin-right: 0;
left: 0;
border: 2px dashed red;
}
#comercials {
position: relative;
right: 0;
border: 2px double yellow;
}