Goal: All corners of the rectangle should be round.
Problem: The lower right corner is angular because I have slightly sharpened the edge with CSS Clip path.
Questions: 1. what do I have to do to round the lower right corner? 2. is Clip Path possibly the wrong way to implement what I want?
section {
background: gray;
height:100vh;
padding:10px;
}
.block {
background: green;
padding: 10px 10px 50px 10px;
clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
border-radius: 10px;
}
<section>
<div class="block">
<div>lorem ipsum</div>
<div>lorem ipsum</div>
<div>lorem ipsum</div>
<div>lorem ipsum</div>
</div>
</section>