LoginSignup
0
0

More than 3 years have passed since last update.

文中の一部にCSSを適用させたい

Posted at

文中の一部にCSSを適用させたい場合は、<span>タグで囲みます。
以下の例では、<span>タグにCSSを指定することで、文字の色を一部変えています。
<span>タグの前後には改行は入りません。

index.html
<h1>
  <span>ここ</span>を強調したい
</h1>
style.css
span {
  color: #ff0000;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0