Вот мой .ts:
Код: Выделить всё
const p = document.createElement('p');
p.setAttribute('class', 'demoClass');
p.innerText = 'Hello';
Код: Выделить всё
.demoClass {
background-color: #00ffff !important;
}
Единственное решение, которое я нашел, следующее:
Код: Выделить всё
p.setAttribute('style', 'background-color: #00ffff !important');
Подробнее здесь: https://stackoverflow.com/questions/792 ... tattribute
Мобильная версия