1
::after
セレクタの下のテキストからスタイルを削除する際に問題があり、インターネットから解決策を見つけることができませんでした。デザインは基本的に左側に向かって直線的な勾配です。:: afterセレクタでスタイリングを削除する
.txt {
background: -webkit-linear-gradient(left, #E27822,#E2224C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold ;
}
.txt::after {
content: " - More Sample Text";
background: none;
-webkit-background-clip: none !important;
-webkit-text-fill-color: none !important;
color: green;
}
<span class="txt">Sample Text</span>
<p>The "<b>More Sample Text</b>" should be coloured <span style="color: green;"><b>Green</b></span>.</p>
'currentColor'の色は、現在のスタイルにオーバーレイされています。純粋なグリーンなので完全に取り除きたいです。 –
何が重なっていますか?それは私のために純粋な緑です。 – Oriol
グリーンテキストの周りに薄い枠があります。ボーダーは間違いなく古いスタイルです。 –