Is there any way of reliably detecting if a browser is running in full screen mode? I\'m pretty sure there isn\'t any browser API I can query, but has anyone worked it out b
Opera treats full screen as a different CSS media type. They call it Opera Show, and you can control it yourself easily:
@media projection { /* these rules only apply in full screen mode */ }
Combined with Opera@USB, I've personally found it extremely handy.