それはこのように動作します:
<link rel="stylesheet" type="text/css" href="first-style.css">
<link rel="stylesheet" type="text/css" href="second-style.css">
セカンドスタイル.css:
@import 'third-style.css';
最後にインポートされたスタイルは、すべてのルールが適用されるスタイルです。例えば:
最初のスタイル.css:
body{
size:200%;
color:red;
}
セカンドスタイル.css:
@import 'third-style.css';
p{
color:red;
}
サードスタイル.css:
p{
color:green;
size:10%
}
結果のスタイルは次のようになります。
body{
size:200%;
color:red;
}
p{
color:green;
size:10%
注: !important ルールを追加する場合は異なります。例えば:
最初のスタイル.css:
body{
size:200% !important;
color:red !important;
}
セカンドスタイル.css:
@import 'third-style.css';
p{
color:red;
}
サードスタイル.css:
p{
color:green;
size:10%
}
結果は次のようになります。
body{
size:200% !important;
color:red !important;
}
これが役立つことを願っています!