Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スタイラスペンを使用して、テキストの文字列内の1つの単語のみの色を変更したい
#copy h1 Our new site will be ready soon..
スタイラスコードは
h1 font-weight bold color white
h1フレーズ「Our」の最初の文字の色を黄色に変更したいだけです。どうすればスタイラスでそれを実現できますか。ありがとうございます:)
cssセレクターの「first-letter」セレクターは良いオプションです。
例のように他の文字やテキストの一部を変更したい場合は、独自のスタイルのスパンを使用してください。
<h1><span style="color:yellow">O</span>ur <span style="color:blue">new</span> website</h1>
:first-letterセレクターを試すことができます:
h1:first-letter color: yellow
これが例のあるフィドルです。
これは、疑似要素を利用することで実行できます
フィドル