-1

Hello guys i was wondering how would I edit this using JavaScript DOM?

<div class="player-column" style="width: 675.556px;"></div>

I'd prefer a method using

document.querySelector(".player-column")

(i want to edit the width of the style btw)

user3341821
  • 3
  • 1
  • 4

1 Answers1

0

Quite simple:

document.querySelector(".player-column").setAttribute("style","width:900px");
Toothbrush
  • 2,080
  • 24
  • 33