-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
54 lines (40 loc) · 1.45 KB
/
Copy pathnew.html
File metadata and controls
54 lines (40 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
function myfunction1(a){
document.write("<div style='width:0;height:0;border-left:"+a+"px solid transparent;border-right:"+a+"px solid transparent;border-bottom:"+a+"px solid red;'></div>");
document.write("<div style='width:0;height:0;border-top:"+a+"px solid transparent;border-bottom:"+a+"px solid transparent;border-right:"+a+"px solid green;'></div>");
document.write("<div style='width:0;height:0;border-left:"+a+"px solid transparent;border-right:"+a+"px solid transparent;border-top:"+a+"px solid yellow;'></div>");
document.write("<div style='width:0;height:0;border-top:"+a+"px solid transparent;border-bottom:"+a+"px solid transparent;border-left:"+a+"px solid blue;'></div>");
}
myfunction1(25);
</script>
<!--
<div style="width: 0;height: 0;
border-left:25px solid transparent;
border-right: 25px solid transparent;
border-bottom: 25px solid #ccc;">
</div>
<div style="width: 0;height: 0;
border-left:25px solid transparent;
border-right: 25px solid transparent;
border-top: 25px solid #000;">
</div>
<div style="width: 0;height: 0;
border-left:25px solid transparent;
border-right: 25px solid #ddd;
border-bottom: 25px solid transparent;">
</div>
<div style="width: 0;height: 0;
border-left:25px solid transparent;
border-right: 25px solid transparent;
border-bottom: 25px solid red;">
</div>
-->
</body>
</html>