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.
为了使这个简短而简单,<div>如果用户的分辨率为 1024x768,我希望隐藏其中。
<div>
因此,如果我为 css left_bar 提供了一个单独的 CSS 文件,那么该模板将<div id='left_bar'>如何进行分辨率检查查询?
<div id='left_bar'>
@media all and (width:1024px) and (height:768px) { /* CSS rules here */ }
虽然,这是非常具体的。通常你使用带有min-width或类似的媒体查询。
min-width