Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Thomas Skjelstad
Thomas Skjelstad
11,541 Points

My slightly modified Threehouse project.

Just playing around with CSS, http://www.skjelstad.net How can i make the video only visible to desktop browsers and not portable devices?

2 Answers

Thomas Skjelstad
Thomas Skjelstad
11,541 Points

Thank you sir, i will give that a go.

David Hope
David Hope
19,876 Points

Nesting all of your CSS inside a media query with a min-width media feature set for larger sceen sizes should achieve your desired result Thomas. Example @media (min-width: 769px) { body { height: 100%; }
} I hope this helps!