LoginSignup
1
0

More than 1 year has passed since last update.

固定スタイルシート

常に適用させるスタイルシート。優先スタイルシートから代替スタイルシートに切り替えても、固定スタイルシートは適用される。

<link href="URL" rel="stylesheet" type="text/css" >

優先スタイルシート

ページ読み込み時に、優先的に適用されるスタイルシート。
title属性に、優先スタイルシートのグループ名を指定する。同じグループ名のスタイルシートは、同時に適用される。

<link href="URL" rel="stylesheet" type="text/css" title="優先スタイルシートのグループ名">

代替スタイルシート

優先スタイルシートの代替となるスタイルシート。ページ読み込み時には適用されず、ユーザーがブラウザを操作し、スタイルシートを切り替えたときに適用される。
rel属性に、stylesheet alternateを指定する。
title属性に、代替スタイルシートのグループ名を指定する。同じグループ名のスタイルシートは、同時に適用される。

<link href="URL" rel="stylesheet alternate" type="text/css" title="代替スタイルシートのグループ名">

最後に

間違っている点がありましたらご指摘お願いします。

1
0
1

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
1
0