I have used the following code to my css file to get a gradient at all corners, however, I am only getting gradient at the top two corners.
Can anyone please let me know the correct way to do this?
jsFiddle: https://jsfiddle.net/z0hxmb9j/1/
body{
width: 100%;
background-color: #fbe0be;
}
body:before {
z-index: -1;
content: '';
position:absolute;
top:0;
right:0;
bottom:0;
left:0;
display: block;
width: 100%;
border-radius: 0%;
background-image:
radial-gradient(circle at top left,
rgba(212,235,235,1), rgba(155,179,208,.3) 70.71%),
radial-gradient(circle at top right,
rgba(83,98,127,1), rgba(155,179,208,.3) 70.71%),
radial-gradient(circle at bottom right,
rgba(122,97,70,1), rgba(251,224,190,.7) 70.71%),
radial-gradient(circle at bottom left,
rgba(122,97,70,1), rgba(251,224,190,.7) 70.71%)
}