我正在将位置(以 % 为单位)应用于某些 div,但它不起作用。这是代码。
#transitions {
position: absolute;
top: 0;
bottom: 70%;
display: block;
}
但是当我申请时:
#transitions {
position: absolute;
top: 0;
bottom: 70em;
display: block;
}
它对我有用。
b/w % 或 em 有什么不同吗?
请帮忙。