How can I make a 45 degree responsive ribbon with folded corner?

后端 未结 2 1049
情话喂你
情话喂你 2020-12-11 09:46

Is it possible to create css ribbon in corner shaped?

.

I\'ve tried with an png image, but is there any option to create using css ? should work with responsiv

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-11 10:37

    Try using a Linear Gradient.

    To create a linear gradient, you must define at least two color stops. Color stops are the colors you want to render smooth transitions among. You can also set a starting point and a direction (or an angle) along with the gradient effect.

    Syntax:

    background-image: linear-gradient(direction, color-stop1, color-stop2, ...)
    

    Source: W3Schools.com

提交回复
热议问题