HTML Canvas 在右下角对齐 DIV

HTML Canvas align DIV at bottom right-hand corner

我有一个 Canvas,想在相对于 Canvas 的右下角添加一个 Div/Button。我当前的代码如下所示:

#container {
    margin-top: 5px;
    width: 96%;
    margin: auto;
    background-color: blue;
    height: 300px;
}

#viewer {
    width: 40%;
    background-color: red;
    height: 100%;
}

#button {
    height: 40px;
    width: 40px;
    background-color: green;
    position: absolute;
    bottom: 0;
    right: 0;
}

canvas {
    border: 3px solid black; 
    width: 100%;
    height: 100%;
}
<div id="container">
    <div id="viewer">
        <canvas></canvas>
        <div id="button" onclick="myFunction();"></div>
    </div>
</div>

但到目前为止,我无法找到合适的解决方案。如果有人可以帮助我,那就太好了。

我认为 Temani 是对的 — 将按钮放在 canvas 的右下角,这不是您想要的吗?

#container{
 margin-top: 5px;
 width: 96%;
 margin: auto;
 background-color: blue;
 height: 300px;
}

#viewer{
 width: 40%;
 background-color: red;
 height: 100%;
    position: relative;
}

#button{
 height: 40px;
 width: 40px;
 background-color: green;
 position: absolute;
  bottom: 0;
  right: 0;
}

canvas{
border: 3px solid black; 
width: 100%;
height: 100%;
}
<div id="container">
<div id="viewer">
<canvas></canvas>
<div id="button" onclick="myFunction();"></div>
</div>
</div>

这是您要找的吗?
我建议您查看这篇文章:CSS Layout - The position Property

#container{
    margin-top: 5px;
    width: 96%;
    margin: auto;
    background-color: blue;
    height: 300px;
}

#viewer{
    width: 40%;
    background-color: red;
    height: 100%;
    position:relative;
}

#button{
    height: 40px;
    width: 40px;
    background-color: green;
    position: absolute;
    bottom: 0;
    right: 0;
}

canvas{
    border: 3px solid black; 
    width: 100%;
    height: 100%;
}
<div id="container">
    <div id="viewer">
       <canvas></canvas>
       <div id="button" onclick="myFunction();"></div>
    </div>
</div>

就像 Temani Afif 说的。

position:relative

#viewer 上为我工作。