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.
ウィンドウモードの CSS ルールを設定するにはどうすればよいですか?
@media all and (display-mode: fullscreen) { .testfullscreen { display: none; /*Works*/ } } @media all and not (display-mode: fullscreen) { .testwindowed { display: none; /*Not working*/ } }
コードペン