shape
Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。
shape
は CSS のメディア特性で、端末の形状が矩形であるか丸いディスプレイであるかを区別するために使用することができます。
構文
例
基本的な例
HTML
html
<h1>Hello World!</h1>
CSS
css
h1 {
text-align: left;
}
@media (shape: rect) {
h1 {
text-align: left;
}
}
@media (shape: round) {
h1 {
text-align: center;
}
}
カスタムスタイルシート
この HTML は、丸い画面を持つ端末に特殊なスタイルシートを適用します。
html
<head>
<link rel="stylesheet" href="default.css" />
<link
media="screen and (shape: rect)"
rel="stylesheet"
href="rectangle.css" />
<link media="screen and (shape: round)" rel="stylesheet" href="round.css" />
</head>
仕様書
Specification |
---|
CSS Round Display Level 1 # shape-media-feature |
ブラウザーの互換性
この機能を実装しているブラウザーはありません。