If you are using Flexbox (bootstrap), assign an ID to the div that will disappear and assign the class col-12 (for mobile resolutions) and col-Md-6 (for resolutions larger than average) to the div that should occupy the 12 columns, and col-6 to the div that should disappear.
<div class="container">
<div id="identificadorDaDiv" class="col-6">
Essa desaparece quando chegar em md
</div>
<div class="col-12 col-md-6 ">
Essa ocupa todas as 12 colunas quando chegar em md
</div>
</div>
In your CSS, you can add a @media query for medium or smaller resolutions (The default bootstrap is 768px)
@media screen and (max-resolution: 767px) {
#identificadorDaDiv {
display: hidden
}
}
How are you doing to "get to Md"?? Edit your question because it is not clear.
– William Aparecido Brandino
I’m wearing a bootstrap
– Gabriel
Who controls this is JS, not Bootstrap.
– William Aparecido Brandino
The one that disappears upon arrival in Md should occupy as much before disappearing?
– Lauro Moraes