#elem {
-myCustom: 99;
}
また
#elem {
--myCustom: 99;
}
上記の両方がオンラインの例で使用されているのを見ました。2つの違いは何ですか?
JavaScript でカスタム プロパティにアクセスしようとすると、null が返されます。
#elem {
-myCustom: 99;
}
<div id="elem">some text</div>
elem = document.getElementById("elem");
style= window.getComputedStyle(elem);
value = style.getPropertyValue('-myCustom');
alert(value);