Retrouvez ici tous nos exercices sur le concours Centrale ! Pour sélectionner un exercice en particulier et faciliter la lecture, n’hésitez pas à cliquer sur une image !
( function() {
var observer = new MutationObserver( function( mutations ) {
mutations.forEach( function( m ) {
if ( m.target.style && m.target.style.height === 'auto' ) {
m.target.style.removeProperty( 'height' );
}
} );
} );
document.querySelectorAll( '.cs-site-content, .cs-site, .cs-main-content' ).forEach( function( el ) {
el.style.removeProperty( 'height' );
observer.observe( el, { attributes: true, attributeFilter: ['style'] } );
} );
} )();