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.
ヘッダーの一部から太字のスタイルを削除する方法はありますか?
<h1>**This text should be bold**, but this text should not</h1>
これを達成する方法はありますか?
別の CSS ファイルが必要ない場合は、インライン CSS を使用できます。
<h1>This text should be bold, <span style="font-weight:normal">but this text should not</span></h1>
ただし、マダラのコメントが示唆するように、関連するユースケースに応じて、太字の部分を別のヘッダーに配置することを検討することをお勧めします。