gridview里的模板列里的asp:CheckBox怎么改变它的大小
gridview里的模板列里的asp:CheckBox怎么改变它的大小
改来改去还是不行,要么改的是列本身的大小而不是asp:CheckBox的大小?
用css改。但是各个浏览器有区别。
CSS code?<style type="text/css"> <!-- input.checkbox { width : 0.5em; height :2.5em; padding: 0px; margin: 0px; } --> </style>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> <!-- input.checkbox { width : 0.5em; height :0.5em; padding: 0px; margin: 0px; } --></style> </head> <body> <table border="1" > <tr> <td ><input type="checkbox" name="checkbox" class ="checkbox" value="checkbox"></td> <td ><input type="checkbox" name="checkbox" class ="checkbox" value="checkbox"></td> <td ><input type="checkbox" name="checkbox" class ="checkbox" value="checkbox"></td> </tr> <tr> <td ><input type="checkbox" name="checkbox" value="checkbox"></td> <td ><input type="checkbox" name="checkbox" value="checkbox"></td> <td ><input type="checkbox" name="checkbox" value="checkbox"></td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </table> </body> </html>checkbox里改他的width 和height 网页代码里直接加啊