gpt4 book ai didi

css - 是否有替代方法在 px 中使用减号

转载 作者:行者123 更新时间:2023-11-28 16:23:59 25 4
gpt4 key购买 nike

我已经设计了我的网页,一切顺利,直到我在我的网页中放置了一个中心部分,它现在将我的右侧部分推到了页面下方,其中包含我即将 float 的购物车。中间部分为 50%(宽度),右侧部分为 15% 宽度。无论我是否更改宽度的值,中心部分仍然会影响右侧部分的位置。如果我使用 margin-top: -50px,则右侧部分将页面从顶部返回到 100px 的唯一方法是。我知道这是不受欢迎的。有没有更好的方法来解决这个问题。

section#cart{
padding: 0;
margin: 0;
float: right;
margin-right: 20px;
margin-top: 100px;
width: 15% !important;
border: 1px solid #808284;
height: 200px;
text-transform: uppercase;
}

p#order{
padding: 0;
margin: 0;
background-color: #e86065;
width: 100%;
height: 30px;
text-align: center;
color: #fff;
font-weight: bold;
font-size: 1em;
padding-top: 10px;
text-transform: uppercase;
}

p#estimated{
padding: 0;
margin: 0;
background-color: #d5e16d;
width:100%;
height: 80px;
margin-top: 10px;
text-align: center;
font-size: 0.9em;
text-transform: uppercase;
padding-top: 5px;
color: #000;
font-weight: bold;
}

b#avg{
font-size: 2.5em;
color: #00a4c0;
text-align: center;
}

/*PRODUCTS VIEW- MIDDLE*/
section#products_view{
margin: auto;
width: 50%;
background-color: red;
height: 400px;
margin-top: 110px;

}
<section id='products_view'>
<p>hello<p>
</section>


<section id='cart'>
<p id='order'>My Order</p>
<div id='del'>
<p id='estimated'>Estimated Delivery <br>
<b id='avg'><?php echo $rest_avg ?></b><br>
minutes</p>
<?php // if (isset($_GET[''])) {
?>
</div>

</section>

最佳答案

您可以通过使用 flexbox 创建一个三列结构来实现这一点。我正在为左列使用 :before 伪元素。

.container {
display: flex;
align-items: flex-start;
}
.container:before {
content: "";
}
.container:before, #cart {
flex: 1;
}
#cart {
background: grey;
}
#products_view {
flex: 0 0 50%;
height: 150px;
background-color: silver;
}
<div class="container">
<section id='products_view'>
hello
</section>
<section id='cart'>
cart
</section>
</div>

关于css - 是否有替代方法在 px 中使用减号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36410923/

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