TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Taking Advantage of HTML5 and CSS3 with Modernizr

21 pointsby gspyroualmost 15 years ago

2 comments

Yaggoalmost 15 years ago
If you want to take advantage of 2D/3D effects, you can use CSS media queries to hide them (and related stylings) from incapable browsers: `@media transform-3d { ... }`<p><a href="http://developer.apple.com/safari/library/documentation/appleapplications/reference/SafariCSSRef/Articles/OtherStandardCSS3Features.html#//apple_ref/doc/uid/TP40007601-SW3" rel="nofollow">http://developer.apple.com/safari/library/documentation/appl...</a>
Groxxalmost 15 years ago
Weird... I get stuttery scrolling on all the styled samples (not on the raw) in Safari / WebKit nightly, but not Chrome. Anyone else experience this? I can't see what it's coming from...<p>That aside, interesting technique. I'll have to keep modernizr in mind for anything not-super-complicated that I want to allow degradation on, it seems like it would make a lot of tasks simpler.