5
擬似要素で三角形を作成しようとしています。下の画像のようなものです。 Html/Css擬似要素を含む三角形
これまで私がこれまで試みてきたのはこれです。
.container .form--container:before {
content: "";
position: absolute;
top: 0px;
left: 130px;
width: 28px;
height: 28px;
transform: translate(-1rem, -100%);
border-left: 1.5rem solid #979797;
border-right: 1.5rem solid #979797;
border-bottom: 1.5rem solid white;
}