HRStylyingのCSSヘルプ[重複]
Nov 30 2020
HRタグを使用して、以下のデザインのスタイリングを実現する方法を検討する必要があります。HRは2色である必要があり、その間の角度も必要です。純粋なCSSでこれを達成できればと思います。IMGファイルはありません。
誰かがこれをどのように達成できるか知っていますか?

hr{
position:relative;
height:3px;
background-color:#7902AA;
}
hr:before {
position:absolute;
content : ' ';
left:0;
right:0;
height:3px;
top:-1px;
background-color:#FFD800;
}
<h1>
The Equality Network is an independent organisation founded to establish LGBTIQ+ inclusivity in the workplace and broader community.
</h1>
<hr>
<p>
The Equality Network has pioneered a new benchmark in acceptable standards for LGBTIQ+ inclusivity training in the workplace and community.
</p>
回答
1 RobbyCornelissen Nov 30 2020 at 10:24
マルチポジションのカラーストップと135度の角度で線形グラデーションを使用できます。
hr {
height: 0.25em;
border: none;
background: linear-gradient(135deg, yellow 0% 50%, purple 50% 100%);
}
<hr>