Catégorie de tag

concours

5 articles
( 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'] } ); } ); } )();