dataset dynamic test
HTML
<div></div>
CSS
div{
width: 20rem;
background: yellow;
height: 0;
border:1px solid red;
}
div[data-display]{
height: 20rem;
}
JavaScript
const div = document.querySelector('div');
div.setAttribute('data-display','')