JSFiddle - React, Tailwind, and code Playground

by eget teteete

HTML

<div id="la">Lorem</div>
<div id="la">first</div>
<div id="la">bugaga</div>

CSS

#la {
  color: red;
}

JavaScript

document.querySelectorAll('#la').forEach(el => {
  el.textContent = 'hello'
  console.log(el)
})