27 lines
482 B
HTML
27 lines
482 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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>雪碧图</title>
|
|
<style>
|
|
.box {
|
|
width: 42px;
|
|
height: 45px;
|
|
background: url("./img/icenter.png");
|
|
background-position: 0 -45px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="box">
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |