CSS 3 support for @ screen media
Posted: Fri Aug 26, 2016 7:19 pm
I have CSS 3 code that works on soemone elses site (w3 schools) but won't work in my vestacp hosted site.
Any ideas or a work around?
Specifically;
@media screen is not responding !
Any ideas or a work around?
Specifically;
Code: Select all
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: pink;
}
@media screen and (min-width: 480px) {
body {
background-color: lightgreen;
}
}
</style>
</head>
<body>
<h1>Resize the browser window to see the effect!</h1>
<p>The media query will only apply if the media type is screen and the viewport is 480px wide or wider.</p>
</body>
</html>