我想在左下角放置div。我这样写css:
SELECT so.ID
, so.Reference
, c.Name AS CustomerName
FROM SalesOrder so
INNER JOIN Customer c ON c.ID = so.CustomerID
INNER JOIN @SelectedCustomers s on c.ID = COALESCE(s.ID, c.ID)
我不是css的主人而我不是关于这个解决方案...
答案 0 :(得分:1)
使用
position: absolute;
<{1>} #announcement
。为此,您需要确保父元素
bottom: 0;
left: 0;
指的是position: relative;
或position: absolute;
。
设置position: relative; bottom: 0; left: 0
根本不会改变元素的视觉位置,因为它意味着&#34;将它相对于通常显示左边零像素和底部零像素的位置#34;
答案 1 :(得分:1)
使用固定位置
position: fixed;
bottom: 0;
left: 0;
z-index: 998;
修改你的css代码
#announcement{
position: fixed;
bottom: 0;
left: 0;
z-index: 998;
width: 50%;
margin-left: 10px;
}
答案 2 :(得分:0)
使用绝对位置
position : absolute;
如果你想要除了设置 z-index 属性之外的其他部门的划分。