0
問題を示しているサンプルマークアップがあるので、質問は非常に簡単です。canvas divを前面に送ることができません
input type="file"
を次の例でクリックするとどうなりますか?私はz-index
と仕事をしようとしましたが、ここで何もしないようです。
<html>
<div style="z-index: 0">
<img src="#" width="350" style="position: absolute;" />
<canvas width="350" style="border: thick; position: absolute"></canvas>
</div>
<div style="z-index: 10">
<input type="file" />
</div>
</html>
。 'z-index'はそれがなければ動作しません。 – putvande