Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ad-inserter domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/blog.webeats.it/httpdocs/wp-includes/functions.php on line 6114
Tips: div full with in una struttura boxed - Blog WebEats

div full with in una struttura boxed. Ecco un piccolo workaround per ovviare a questo piccolo problemino

Ecco un piccolo tips CSS per creare un div full with in una struttura boxed. E’ necessario solo aggiungere qualche regola per ovviare a questo problema. Vediamo un piccolo esempio:

<div class="container">
   <div class="row"> contenuto div </div>
</div>

La classe container di Bootstrap ovviamente mantiene incapsulato il div in 980px (max-with della classe .container).

Aggiungendo questa classe al nostro foglio di stile potremo però ovviare il problema:

.row-full-width {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}

Il codice HTML diventerà quindi:

<div class="container">
   <div class="row row-full-width"> contenuto div full with 100% </div>
</div>

div full with in una struttura boxed

Fonte