© 2026 Hedgehog Software, LLC
<div class="div"></div>
.div::before{ content: ""; height: 100px; width: 100px; background: red; position: absolute; }
let div = document.querySelector('.div'); let divBefore = window.getComputedStyle(div,'::before'); divBefore.background = 'blue'