Let's say I have this simple style:
.element {
width: 60px;
}
But I have no DOM element with that class. Can I use pure JS to get that style? getComputedStyle() presupposes you are accessing a something the DOM has computed. If so, could someone explain which CSSOM element would be used to access it?