How to make some blur for border? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
16th Oct 2017, 8:38 AM
Bogdan Saliuk
Bogdan Saliuk - avatar
3 Answers
+ 3
Not possible in normal way try making division inside another division and then set opacity for the first division like this :- <div style = "opacity:0.5;height:100px;width:100px;background-color:yellow;"> <div style = "height:80px;width:80px;background-color:red;"> </div> </div>
16th Oct 2017, 9:21 AM
RZK 022
RZK 022 - avatar
+ 2
Try in your header box-shadow: 0px 0px 10px 5px black; or you can try box-shadow: inset 0px 0px 10px 5px blue;
16th Oct 2017, 11:08 AM
Calviղ
Calviղ - avatar
+ 1
You can even use Box-Shadow for giving a blurry look. like: box-shadow: 0 0 100px 10px white; change the 100 and 10 to match your div.
16th Oct 2017, 9:28 AM
Niush
Niush - avatar