请老师检查作业
来源:2-4 编程练习
鱼档卖鱼
2021-12-14 09:54:27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 200px;
height: 200px;
background-color: lightpink;
margin: 30px auto;
transition: all 3s linear 0s;
}
div:hover {
background-color: orange;
box-shadow: rgb(221, 212, 212) 10px 10px 10px 10px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
1回答
好帮手慕慕子
2021-12-14
同学你好,代码实现是可以的,继续加油,祝学习愉快~