Learn how to make your website colorful and attractive.
h1{
color:blue;
}
body{
background:#f4f7fb;
}
body{
background-image:url("background.jpg");
background-size:cover;
background-position:center;
}
.hero{
background:linear-gradient(
135deg,
#2563eb,
#7c3aed
);
color:white;
}
| Format | Example |
|---|---|
| Name | red |
| HEX | #2563eb |
| RGB | rgb(37,99,235) |
| RGBA | rgba(37,99,235,.5) |
Which CSS function creates a gradient background?