Question

Is there a css media query for Smart TVs?

I tried this way but it did not work:

@media tv and (min-width: 700px)  {
   body { border: 1px solid red;}
}
Was it helpful?

Solution

I got here by testing a Samsung TV 40' she receives a media query with resolution of 1240px

Worked here:

@media screen and (min-width: 1240px) {...}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top