Building an idea using HTML CSS JS - Day 4

Building an idea using HTML CSS JS - Day 4

·

1 min read

Today's day 4 Goal is to write Styles in CSS and some minor adjustments in my project backupcal.

how to add background color?

  1. Add gradient background style instead of boring solid color.
background-color: #f6ecec;
background-image: 
                radial-gradient(at 45% 5%, #B8E8FC 0, transparent 59%);
  1. Use Fit content property :
height: fit-content;
width: fit-content;

My Code:

css.png

Author: Dheeraj.y