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.
即使您的屏幕宽度低于 1200 像素,您也已float: left设置好图像。.logo这就是为什么display: block没有工作。只需float: none在媒体查询中设置:
float: left
.logo
display: block
float: none
@media screen and (max-width: 1200px) { .logo { float: none; display: block; } }