响应式设计在部署后完成

问题描述 投票:0回答:1

您好,开发人员们!

我制作了此电子商务应用程序,使用chrome中的内置工具使其具有响应能力。虽然在Chrome浏览器中一切正常,但是当我部署该应用程序时,由于某种奇怪的原因,它变得极其笨拙。

[您可以在Chrome浏览器中看到该应用程序的一部分,而在Iphone SE上也可以看到同一部分。

enter image description here

enter image description here

在使用某些应用程序之前,这已经发生在我身上,我不知道自己在哪里犯错。是使用Google Chrome内置工具还是我编写的媒体查询,还是CSS整体。我完全迷路了。我留下一小段代码来展示我通常如何设计组件样式并添加媒体查询,以便你们指出我可能犯的任何主要错误。

.products-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 2rem 0 0rem 0;
}

.products {
    width: 95%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.categories {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category {
    font-size: 0.8rem;
    padding: 0.2rem 0 0 2rem;
    font-weight: lighter;
    cursor: pointer;
}

@media only screen and (max-width: 915px){
    .products {
        flex-direction: column;
        align-items: center;
    }
    .categories {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        grid-auto-flow: row;
        grid-auto-rows: 1fr;
        grid-gap: 0.5rem;
        width: 78%;
        margin-bottom: 2rem;
    }
    .category {
        background-color: rgb(48, 48, 48);
        border: none;
        outline: none;
        color: white;
        padding: 0.5rem 1rem 0.5rem 1rem;
        text-align: center;
        align-self: center;
    }
}

@media only screen and (max-width: 830px){
    .categories {
        width: 95%;
    }
}

@media only screen and (max-width: 683px){
    .categories {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 485px){
    .category {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem 0.3rem 0.7rem;
    }
}

@media only screen and (max-width: 340px){
    .category {
        text-align: center;
        font-size: 0.5rem;
    }
}

这是实际组成部分:

const Products = () => {
    return (
        <div className="products-container">
            <div className="products">
                <div className="categories">
                    <h1 className="category">VIEW ALL</h1>
                    <h1 className="category">BACK IN STORE</h1>
                    <h1 className="category">BEST-SELLERS</h1>
                </div>
                <Clothes />
            </div>
        </div>
    );
};

*编辑-排序依据按钮CSS:

.sortBy-btn {
    font-size: 0.6rem;
    margin: 0.5rem 0 0 2rem;
    width: 8rem;
    padding: 0.2rem;
    background-color: rgb(34, 34, 34);
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}
    .sortBy-btn:hover {
        background-color: grey;
    }

@media only screen and (max-width: 915px){
    .sortBy-btn {
        background-color: indianred;
        color: white;
        font-weight: 500;
        font-size: 0.8rem;
        width: auto;
        margin: 0;
        border-radius: 0;
    }
}

@media only screen and (max-width: 454px){
    .sortBy-btn {
        font-size: 0.6rem;
    }
}

@media only screen and (max-width: 347px){
    .sortBy-btn {
        font-size: 0.5rem;
    }
}

任何帮助将不胜感激。

css reactjs deployment responsive-design styles
1个回答
0
投票

我最近也有此错误。我认为对于野生动物园(这是我假设您在iPhone上进行测试时正在使用的东西),您需要将固定高度应用于容器。尝试将固定高度添加到按钮组件,看看是否有所不同

© www.soinside.com 2019 - 2024. All rights reserved.