使用 CSS 实现毛玻璃效果
要使用CSS实现毛玻璃效果,可以使用box-shadow
和border-radius
属性。以下是一个简单的例子:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matte Glass Effect</title>
<style>
.glass {
width: 200px;
height: 200px;
background-color: #fff;
box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
color: #000;
font-size: 20px;
}
</style>
</head>
<body>
<div class="glass">Content</div>
</body>
</html>
这段代码会创建一个带有毛玻璃效果的div
,box-shadow
属性用于添加阴影,border-radius
属性用于创建圆角。
评论已关闭