overflow: auto;
white-space: nowrap;
<aside onclick="event.stopPropagation();">
const inputs = document.getElementsByTagName('input');
[...inputs].forEach((input) => {
if (input.type !== 'hidden') {
input.parentNode.classList.add(input.name);
}
})