Is it possible to apply CSS transitions inline (in the DOM), without using Pseudo Selector or using JS to add and change a property class
on the dom?
.
#target{
width: 100px;
height:100px;
background-color:red;
}
<div id="target" style="transition: opacity 1s linear;"></div>