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.
我试图减少我网站主页画廊上方和下方的空间,或等于左右间距。附件中的箭头显示了我想要减少的区域。
这是我目前拥有的代码:
@media only screen and (max-width: 800px) #header, #pageWrapper, #footer{ padding: 30px 20px; margin-bottom:0px!important;}
我无法发表评论,所以我会在收到您的消息时给出答案。
我假设这张图片在wrapper, 并且wrapper有padding: 30px 20px;
wrapper
padding: 30px 20px;
所以你给了它一个空格top,我想你应该给包装器独立的属性,它是bottom30pxpadding: 0px 20px;
top
bottom
30px
padding: 0px 20px;