日期:2014-05-17 浏览次数:20590 次
<!DOCTYPE html>这个只在html中IE中有用,到jsp就看不到效果。求教就是jsp中怎么使checkbox点大,详细一点
<html>
<head>
<title>test.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
.checkbox {
width: 19px;
height: 40px;
padding: 0 5px 0 0;
background: url(checkbox.png) no-repeat;
display: block;
clear: left;
float: left;
}
</style>
</head>
<body>
<input type="checkbox" name="checkbox" value="checkbox" class="checkbox"/>
</body>
</html>