【发布时间】:2017-12-15 07:36:46
【问题描述】:
请参阅以下页面: https://dogcollars-3.myshopify.com/products/short-sleeve-t-shirt
我正在尝试修复“订单详细信息”框的位置,使其保持在显眼位置并且其后面的内容滚动。这是 Shopify 预建主题。我应用了以下附加 CSS:
@media only screen and (min-width: 1000px) {
.product-single {
width: 70%;
height: auto;
position: relative;
}
.order-details {
width: 300px;
height: auto;
padding: 10px;
top: 50px;
left: 70%;
background: rgba(255,255,0,0.2);
position: fixed;
}
}
“订单详情”元素定位正确但不固定。该元素会随着该层后面的内容滚动。
【问题讨论】:
标签: css css-position