Antecedentes no CSS
.card {
/* other styles */
background: rgba(255, 255, 255, .7);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
Noob Learner
.card {
/* other styles */
background: rgba(255, 255, 255, .7);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
Copy<!DOCTYPE html>
<html>
<head>
<title>My Website Title</title>
</head>
<body>
Hello World
</body>
</html>
/* Color (Example: red): */
html,body {
background-color: red;
}
/* Image (Example: your.picture): */
html,body {
background-image: url("your.picture");
}