jsp 想把checkbox放在一个框里,因为很多所以得由活动条,但是那个框的大小不可以变,就想这张图一样的
使用DIV,然后加上一个样式就可以了,网页代码如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div{border:1px solid #000;
overflow-y:auto;
overflow-x:auto;
width:200px;
height:200px
}
</style>
</head>
<body>
<div>
<input type= "checkbox" >选项1
<input type= "checkbox" >选项2<br><input type= "checkbox" >选项3
<input type= "checkbox" >选项4<br><input type= "checkbox" >选项5<input type= "checkbox" >选项1<br><input type= "checkbox" >选项2
<input type= "checkbox" >选项3<br><input type= "checkbox" >选项4
<input type= "checkbox" >选项5<br><input type= "checkbox" >选项1
<input type= "checkbox" >选项2<br><input type= "checkbox" >选项3
<input type= "checkbox" >选项4<br><input type= "checkbox" >选项5
<input type= "checkbox" >选项1<br><input type= "checkbox" >选项2
<input type= "checkbox" >选项3<br><input type= "checkbox" >选项4
<input type= "checkbox" >选项5
<input type= "checkbox" >选项1<br><input type= "checkbox" >选项2
<input type= "checkbox" >选项1<br><input type= "checkbox" >选项2
</div>
</body>
</html>
效果图:
记得采纳哦!