gpt4 book ai didi

html - 从下往上堆叠元素

转载 作者:行者123 更新时间:2023-11-28 04:36:12 26 4
gpt4 key购买 nike

我正在开发一个通知系统,我希望我的通知从右下角开始,然后堆叠到右上角。我怎么做?比如我如何强制它从屏幕底部开始?

代码:http://jsfiddle.net/2TdCx/

当前的 CSS:

#notifications {
width: 280px;
right: 0;
bottom: 0;
float: right;
position: fixed;
z-index: 9999;
height: 100%;
top: 40px;
margin-right: 3.5px;
}

.notification {
font-size: 12px;
width: 270px;
min-height: 20px;
background: #000;
color: #FFF;
border-radius: 6px;
padding-left: 10px;
padding-top: 2.5px;
padding-bottom: 2.5px;
margin-top: 10px;
opacity: 0.8;
}

最佳答案

我能想到的唯一方法是使用 CSS3 rotate transform 垂直翻转容器和元素本身。

jsFiddle Demo

#notifications, .notification {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}

关于html - 从下往上堆叠元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18966226/

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