Could someone help me with this issue I'm facing in CSS? My screen shot shows blurred edges on the top-left side, and as a CSS beginner, I'm not sure how to fix it. Any solutions?
https://i.sstatic.net/1mJUj.png
.shape {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: #9966ff;
outline: 1px solid transparent;
box-shadow: 0 0 1px rgba(255, 255, 255, 0);
}
.shape:after {
content: '';
border-right: 1500px solid rgba(0, 0, 0, 0);
border-top: 250px solid rgba(255, 255, 255, 1);
border-left: 1500px solid rgba(255, 255, 255, 1);
float: right;
}
<div class="shape"></div>