Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
智能电视是否有 CSS 媒体查询?
我尝试过这种方式,但没有奏效:
@media tv and (min-width: 700px) { body { border: 1px solid red;} }
我通过测试三星电视 40' 到达这里,她收到分辨率为 1240 像素的媒体查询
在这里工作:
@media screen and (min-width: 1240px) {...}