Building an idea using HTML CSS JS - Day 9

Building an idea using HTML CSS JS - Day 9

·

1 min read

Today's day 9 Goal is to Put author name with styling in css file, improvements to code in my project backupcal.

HTML

-

CSS

How to add Author name to bottom of the page?

  1. Write the following code.
.footer {
  position: absolute;
  top: 40em;
  left: 50em;
  height: 40px;
  width: 150px;
}

How to get transparent background?

  1. Write the following code.
.footer {
  padding-top: 15px;
  padding-left: 30px;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 9px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}

JavaScript

-

Conclusion

  1. Adding Name to bottom of page.

  2. Get transparent background.

My Code:

day 9 backupcal.png

Author: Dheeraj.y