OOOOPS. Your browser seems to be too old for this. Please update your browser.
Teutonic CSS
Use it

Visibility

Here are three boxes. You can clearly see the .visible box. You can not see the .invisible box, but you can see that it still takes it space in the layout. The .removed box finally is just not there in any way.

.visible
.removed
<div class="gap_s pa_m bg-0 text-mono">
  <div class="box visible">.visible</div>     <!-- visibility:visible -->
  <div class="box invisible">.invisible</div> <!-- visibility:hidden -->
  <div class="box removed">.removed</div>     <!-- display:none -->
</div>