Files
pathduck.github.io/test/media-fullscreen/index.html
T
2022-12-31 16:52:33 +01:00

18 lines
356 B
HTML
Executable File

<html>
<head>
<style>
div#test { background: red; width: 200px; height: 200px; }
@media (display-mode: fullscreen) {
div#test {background: blue; width: 200px; height: 200px; }
}
</style>
</head>
<body>
<div id="test">
</div>
<button onclick="document.body.requestFullscreen();">
go fullscreen
</button>
</body>
</html>