1、效果图
2、代码部分
<!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{
position: relative;
left: 40%;
width: 200px;
height: 200px;
/* 鼠标样式 */
/* 手心 */
/* cursor: pointer; */
/* 移动鼠标样式 */
/* cursor: move; */
/* 鼠标等待样式 */
/* cursor: wait; */
/* 十字样式 */
/* cursor: crosshair; */
cursor: url(../课时9flex布局/小米官网/img/mi.png), default;
/* cursor: url(./img/shu.jpeg), default; */
background-color: greenyellow;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>