escaping the wrapper

Hey, is there a way to escape a wrapper on one side without using grid? I'm aware Kevin has made a video on this where he creates a grid with columns that mimics padding etc however if you weren't utilizing grid and using a simple, generic wrapper class that looks something like:
.wrapper {
  --padding: 1.5em;

  width: min(calc(90vw - var(--padding)), 1200px);
  margin-inline: auto;
}

would there be a way to allow one side to overflow the gutter that could easily be implemented into an exception class e.g. <div class="wrapper wrapper--break"></div>? Thanks in advance
Was this page helpful?