Warna latar belakang CSS
body {
background-color: green;
}
Scratchy
body {
background-color: green;
}
.card {
/* other styles */
background: rgba(255, 255, 255, .7);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
html {
color: #f3f3f3;
font-family: cursive;
font-size: 25px;
}
body {
background-color:rgb(130, 50, 29);
}
// Making text background image
<h1>css animation</h1>
<style>
h1{
background:url(image.jpg);
-webkit-background-clip:text;
color:transparent;
}
</style>