HTML Canvas在右下角对齐DIV

问题描述 投票:0回答:3

我有一个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>

但到目前为止,我无法找到适当的解决方案。如果有人可以帮助我,这将是很好的。

css position css-position
3个回答
0
投票

这是你想要的? 我建议你查看这篇文章:qazxsw poi

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%;
}

0
投票

我觉得Temani是对的 - 这把按钮放在画布的右下方,这不是你想要的吗?

<div id="container">
    <div id="viewer">
       <canvas></canvas>
       <div id="button" onclick="myFunction();"></div>
    </div>
</div>
#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%;
}

0
投票

就像Temani Afif说的那样。

<div id="container">
<div id="viewer">
<canvas></canvas>
<div id="button" onclick="myFunction();"></div>
</div>
</div>

#viewer为我工作。

© www.soinside.com 2019 - 2024. All rights reserved.