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.
我想让登录标签(在此页面的最顶部 www.plantify.co.uk)在 iPad 和 iPhone 上正确显示。
该网站无法响应,我遇到的麻烦是您必须放大以专注于输入标签,它看起来非常混乱。
任何 CSS / 响应式图例可以帮助我吗?
您可以像这样在 CSS 中使用媒体查询:
@media screen and (max-width: 480px) { // your code goes here }
并设置您想要在此处看起来不同的元素。