11.简单的CSS按钮悬停特效

效果

在这里插入图片描述

源码

<!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

猜你喜欢

转载自blog.csdn.net/qq449245884/article/details/128501689