我的图片需要有大约30个复选框。
我如何定位这些复选框?我尝试了position:relative
和position:absolute
但它没有用。复选框必须位于image的确切位置。
在图像中,我需要在每个牙齿上添加一个复选框。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
</style>
</head>
<body>
<div>
<div style="position:relative; background-image:url('tooth.png'); top: 0px; left: 0px; height: 1280px; width: 912px;">
<input type="checkbox" id="check1" style="position:absolute; bottom: 10px" />
</div>
</div>
</body>
</html>