/    Sign up×
Community /Pin to ProfileBookmark

How can I dynamically add CSS to Shadow root in Java script?

I create a Shadow root in JS and add a few buttons to it.
Becuase this is shadow root, it doesnt inherit any CSS from HTML outside.
How can I add a <link css> to this shadow root in JS? Or how can I inherit the CSS from the container it is in?

to post a comment
CSSJavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@VITSUSAJul 31.2020 — Although I'm not sure why you want to create CSS classes with JavaScript, here is an option:

var style = document.createElement('style');

style.type = 'text/css';

style.innerHTML = '.cssClass { color: #F00; }';

document.getElementsByTagName('head')[0].appendChild(style);

document.getElementById('someElementId').className = 'cssClass';

There is a light jQuery plugin option also which allows to generate CSS declarations: jQuery-injectCSS

In fact, it uses JSS (CSS described by JSON), but it's quite easy to handle in order to generate dynamic css stylesheets.

$.injectCSS({

"#test": {

height: 123

}

});
×

Success!

Help @vijay_kamat spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.25,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...