How can make parallelogram only one side using CSS

Viewed 29
1 Answers

https://bennettfeely.com/clippy/

div{
width:204px;
height:102px;
background:red;
clip-path: polygon(0 0, 81% 0, 100% 100%, 0% 100%);
border-radius:10px;
}
<div></div>

Related