gpt4 book ai didi

css - 让我的盒子在 css 中响应

转载 作者:太空宇宙 更新时间:2023-11-03 19:26:49 24 4
gpt4 key购买 nike

我的 html 文件上有 8 个框,在桌面上查看时,一切看起来都正常,在移动设备上访问时,列与应有的距离很远,它应该在中心,而不是在右侧,我该怎么做才能使其响应? Preview

我的列代码。

.articles {
margin: 100px;
background-color: #F5F5F5;
}

.article {
margin: 5px;
display: inline-block;
width: 340px;
position: relative;
float:left;
left: 155px;
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.article-image {
width: 100%;
}
.article-text-wrapper {
padding: 20px;
}

.article-title {
font-family: 'Roboto', sans-serif;
font-size: 20px;
font-weight: 700;
}
.article-description {
font-family: 'Roboto', sans-serif;
line-height: 16px;
font-size: 16px;
color: rgba(0,0,0,0.7);
font-weight: 300;
}

.article-time {
font-family: 'Roboto', sans-serif;
font-size: 12px;
color: rgba(0,0,0,0.4);
font-weight: 300;
}

非常感谢。

最佳答案

您已将 leftmargin 属性应用于您的 article 元素。您需要为以下内容添加一个 media 查询:

@media only screen and (max-width:700px) {
.articles {
margin: 50px 0;
}
.article {
left: 0;
width:100%;
}
}

关于css - 让我的盒子在 css 中响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50795194/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com