label也可以单纯的作为一个容器使用
作者:互联网
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
label {
display: block;
height: 100px;
width: 100px;
border: 1px solid red;
}
</style>
</head>
<body>
<label for=""></label> //label也可以单纯的作为一个容器使用
<script></script>
</body>
</html>
标签:容器,solid,100px,1px,label,单纯 来源: https://blog.csdn.net/weixin_48079602/article/details/115140442