We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5401cb commit 0e3601eCopy full SHA for 0e3601e
demo1.html
@@ -0,0 +1,16 @@
1
+<!doctype html>
2
+<html>
3
+<head>
4
+<meta charset="utf-8">
5
+<title>demo1</title>
6
+<style>
7
+ #div1{width:200px;height:100px;background:#ccc;border:1px soild #999;display:none;}
8
+</style>
9
+</head>
10
+<body>
11
+<input type="checkbox" onmouseover="div1.style.display='block';" onmouseout="div1.style.display='none';" />
12
+<div id="div1">
13
+ for you safe!!!
14
+</div>
15
+</body>
16
+</html>
0 commit comments