1. CSS单位
1.1. px
固定单位
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 200px;
height: 200px;
background: orange;
font-size: 20px;
}
</style>
</head>
<body>
<div>熊大</div>
</body>
</html>