效果
源码
<!DOCTYPE html>
<html>
<head>
<title>Button Hover Effects</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="#"><span>Get Started</span></a>
</body>
</html>
css
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body
{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
gap: 30px;
}
div
{
display: flex;
gap: 30px;
}
a
{
position: relative;
b