HTMLファイルの特定の要素のみに外部スタイルシートをリンクできますか?特定のHTML要素のみに外部スタイルシートをリンクする
私はこの試みた:あなたは何ができるか
<div id="main">
<!-- I don't want to style .alert from the external css -->
<div class="alert alert-success" role="alert">I don't want to style this alert from the external css.</div>
<div id="preview">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Specific Content Start - I want to style only this element with bootstrap -->
<h1>Bootstrap 3 - Specific Content</h1>
<!-- Specific Content End -->
</div>
</div>
いいえ、できません。オーバーライドしたい要素に対して、より具体的なセレクターを書くだけです。 –
iframeタグ@ScottMarcusのトリックまたはプラグインまたはソリューションはありますか? –
@techLoveそうではありません。貧弱な技術として広く知られているように、 '!important'を主張してはいけません。より具体的なセレクタを作成する必要があります。これは、 'id'ベースのセレクタまたは要素に近いセレクタです。 –