I am trying to achieve a layout in Tailwind similar to Bootstrap where one of my columns inside a Container has no auto margin. Example of the CSS in bootstrap. Can anyone offer a similar workaround in Tailwind?
@media (min-width: 994px) {
.section-full-width-right > .container > .row > .col-lg-6:last-child {
position: absolute;
left: 50%;
}
}
And make sure you change your inset attribute into
in the tailwind.config.js file.