File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
+ < title > 弧形尾箭头</ title >
8
+ < style >
9
+ .curvedarrow {
10
+ position : relative;
11
+ width : 0 ;
12
+ border-top : 90px solid transparent;
13
+ border-right : 90px solid red;
14
+ transform : rotate (10deg ) translateX (100% );
15
+ }
16
+ .curvedarrow ::after {
17
+ width : 120px ;
18
+ height : 120px ;
19
+ content : "" ;
20
+ position : absolute;
21
+ border : 0px solid transparent;
22
+ border-top : 30px solid red;
23
+ border-radius : 200px 0 0 0 ;
24
+ top : -110px ;
25
+ left : -90px ;
26
+ transform : rotate (45deg );
27
+ }
28
+ </ style >
29
+ </ head >
30
+ < body >
31
+ < div class ="curvedarrow "> </ div >
32
+ </ body >
33
+ </ html >
You can’t perform that action at this time.
0 commit comments