我试图给一个百分比父级的固定元素(here )。当我使用像素而不是百分比时,它可以工作。我该怎么做?这可能与CSS吗?width
#container
HTML
<div id="outer">
<div id="container">
<div id="fixed">
Sitename
</div>
</div>
</div>
CSS
#outer{
width:300px;
border: 1px solid yellow;
}
#container {
width: 90%; /*When I use e.g 250 px it works. But I need it in percentage*/
border: 1px solid red;
height: 300px;
}
#fixed {
position: fixed;
width: inherit;
border: 1px solid green;
}
添加:
我需要position:fixed
。因为我想把它放在页面底部,如下所示:
解决方案position:relativ
对我不起作用。