<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: #fefefe;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
}
.card{
width:130px;
aspect-ratio: 0.65;
border:1px solid #000;
border-radius: 4%;
cursor: pointer;
position: relative;
background: yellow;
&:hover{
background: transparent;
}
&:after{
position: absolute;
border:1px solid #000;
border-radius: 4%;
inset:0;
width:100%;
height: 100%;
content:"";
background: pink;
z-index: -99;
}
}
</style>
</head>
<body>
<div class="container">
<div class="card"></div>
</div>
</body>
<script>
console.log(["Hello 笔.COOL 控制台"])
</script>
</html>
index.html
index.html