大家好,有没有办法把复选框放在图片里面?目前它仍然在图像的左侧。谢谢。
HTML:
<div ng-repeat="x in xt">
<input type="checkbox" ng-checked="x.is_valid" ng-model="xlist.isChecked[x.id]"/>
<img src="{{x.picture}} " onerror="this.src='/images/default_pic.jpg'" ><br>
</div>
答案 0 :(得分:1)
此处提出的类似问题:How can I display the checkbox over the images for selection? where答案使用正确定位的css。
GL!