前辈,我找照你的写法写了,但是好像没什么用啊!就最后的button表单按钮padding??
前辈,我找照你的写法写了,但是好像没什么用啊!就最后的button表单按钮padding??
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>padding-test</title>
<style type="text/css">
label{
display: inline-block;
line-height:20px;
padding:10px;
}
#btn{
position: absolute;
left: -2000px;
}
</style>
</head>
<body>
<div>
<button id="btn"></button>
<label for="btn">按钮</label>
</div>
</body>
</html>