Home > Article > Web Front-end > How to add a checkbox to the upper right corner of the image using css (code)
The content of this article is about how to add a checkbox (code) in the upper right corner of the image using CSS. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
The page is as follows:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>测试</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <style type="text/css"> .main{ float:left; margin-left:8px; } </style> </head> <body> <div class="ztree"> <ul id="treeDemo" class="ztree"></ul> </div> <div class="main" style="position:relative;"> <div class="img"> <img alt="图片名称" src="plug-in/image/Desert.jpg" style="width:100px;height:100px"> </div> <div class="checkbox" style="position:absolute;top:0;right:0;z-index:1000"> <input id="box" type="checkbox" name="box"> </div> </div> <div class="main" style="position:relative;"> <div class="img"> <img alt="图片名称" src="plug-in/image/Desert.jpg" style="width:100px;height:100px"> </div> <div class="checkbox" style="position:absolute;top:0;right:0;z-index:1000"> <input id="box" type="checkbox" name="box"> </div> </div> <div class="main" style="position:relative;"> <div class="img"> <img alt="图片名称" src="plug-in/image/Desert.jpg" style="width:100px;height:100px"> </div> <div class="checkbox" style="position:absolute;top:0;right:0;z-index:1000"> <input id="box" type="checkbox" name="box"> </div> </div> </body> </html>
Related recommendations:
How to use CSS to add a double border effect to an image_html/css_WEB-ITnose
css implementation of adding text descriptions on pictures_html/css_WEB-ITnose
The above is the detailed content of How to add a checkbox to the upper right corner of the image using css (code). For more information, please follow other related articles on the PHP Chinese website!