How do I create a responsive glow coming from the upper right corner?

81 views Asked by At

I'm trying to make a glow coming from the upper right corner in css, something similar to this: enter image description here

I tried making a div with filter:blur() and positioning it with absolute, but that causes problems with my viewport since this has to be responsive aswell.

Does anyone know how to make this possible?

1

There are 1 answers

2
A 'dumb' person On

Use filter:blur but simply add the following:

top: 0;
right: 0;

If you want it to be responsive size wise also add this:

height: 100vh;
width: 100vw;