Search code examples
browsermedia-queriessmart-tv

Media Query Browser Smart TV


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;}
}

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) {...}