window.MSInputMethodContext && document.documentMode && document.write('<script src="./ie11CustomProperties.js"><\x2fscript>');back to project
html { --theme-color:orange; } body { display:flex; flex-wrap:wrap; } body > * { max-width:500px; margin:2rem; padding:2rem; overflow:auto; border:2px solid var(--theme-color); } h2 { border-bottom:2px solid var(--theme-color); } a { color:var(--theme-color); } button { background-color:var(--theme-color); } pre { color:#fff; background-color:var(--theme-color); font-size:13px; padding:1em; overflow:auto; }
#pseudoClasses:hover .hasHover, #pseudoClasses:target .hasTarget, #pseudoClasses:focus .hasFocus { background:var(--theme-color); }
#chaining { --a:var(--theme-color); --b:var(--a); background-color:var(--b); } #chaining:hover { --a:transparent; }
#fallback { --theme-color:var(--not_defined, green); }
#before > h2 { --before:' 👉 '; } #before > h2::before { content:var(--before); }
ie-style=" background-color:var(--theme-color); --inner:white"
ie-style="background:var(--inner); color:var(--theme-color)"
body.dark-mode { --bg-color:#666; } body { background-color:var(--bg-color); }
#svg svg { fill:var(--theme-color); } #svg:hover svg { --theme-color:black; }
function setThemeColor(color) { document.body.style.setProperty('--theme-color', color); } function getThemeColor(element) { const computed = getComputedStyle(element); const color = computed.getPropertyValue('--theme-color'); alert(color); }
Resize the browser window
@media (min-width: 400px ) { .min400 { background:var(--theme-color); } } @media (min-width: 800px ) { .min800 { background:var(--theme-color); } } @media (min-width: 1200px) { .min1200 { background:var(--theme-color); } } @media (min-width: 1600px) { .min1600 { background:var(--theme-color); } } @media (min-width: 2000px) { .min2000 { background:var(--theme-color); } } @media (min-width: 2400px) { .min2400 { background:var(--theme-color); } }
/* important on setters: */ body { --important:var(--theme-color) !important; --important:white; } /* important on gettses: */ .important:hover { background-color:var(--important) !important; } #important { background-color:white; }
CSS.registerProperty({ name:'--red-border', inherits:false, initialValue:'5px solid red', })
.initialValue { border:var(--red-border); } .parent { --red-border:5px dashed red; border:var(--red-border); } .child { border:var(--red-border); }
function addStyleElememt(){ var el = document.createElement('style'); var color = (0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6); el.innerHTML = '#dynamicStyle { '+ '--theme-color: #'+color+';'+ '}'; dynamicStyle.appendChild(el); }
function setContent(){ var content = dynamicContent.innerHTML; dynamicContent.innerHTML = ''; setTimeout(function(){ dynamicContent.innerHTML = content; },500) }