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.
当我在 Defy(Android 2.1 更新 1 浏览器版本 7)上打开我的网站http://www.gestaoeventos.com时,我的页脚上有一个奇怪的绿色边框,左下角有一个矩形黄色框。你知道这意味着什么吗?
在您的 HTML 头中,您已经为媒体查询定义了 Mobile.css screen and (max-device-width: 480px)。含义:在屏幕宽度小于 480 像素的设备上应用 Mobile.css 样式。
screen and (max-device-width: 480px)
您可以解决从 Mobile.css中删除border和属性的问题:background-color
border
background-color
#rodape { border: 3px solid green; } #rodape2 { background-color: yellow; }
祝你好运,罗纳尔多!