Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8732

css(styleタグ)をjavascriptで追加する

$
0
0
// styleタグを作成
var styleTag = document.createElement('style');

// styleタグに記載するcssを記入
styleTag.innerText = `
    p {
       color:red;
    }
`;

// 作成したstyleタグを挿入
document.getElementsByTagName('head')[0].insertAdjacentElement('beforeend', styleTag);

Viewing all articles
Browse latest Browse all 8732

Latest Images

Trending Articles