-
Notifications
You must be signed in to change notification settings - Fork 0
/
float.html
55 lines (48 loc) · 2.94 KB
/
float.html
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
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width:150px;
min-height: 300px;
background-color: lightblue;
margin: 10px;
font-size: 15px;
float: right;
padding: 15px;
cursor: pointer;
}
/* .container{
display: flex;
}
*/
</style>
<body>
<div class="container">
<div class="box">
<h>One</h>
<p>The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
The curser setting should inform users of the mouse operations that can be performed at the current location, including: text selection, activating help or context menus, copying content, resizing tables, and so on. You can specify either the type of cursor using a keyword, or load a specific icon to use (with optional fallback images and mandatory keyword as a final fallback)</p>
</div>
<div class="box">
<h>Two</h>
<p>The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
The curser setting should inform users of the mouse operations that can be performed at the current location, including: text selection, activating help or context menus, copying content, resizing tables, and so on. You can specify either the type of cursor using a keyword, or load a specific icon to use (with optional fallback images and mandatory keyword as a final fallback).</p>
</div>
<div class="box">
<h>Three</h>
<p>The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
The curser setting should inform users of the mouse operations that can be performed at the current location, including: text selection, activating help or context menus, copying content, resizing tables, and so on. You can specify either the type of cursor using a keyword, or load a specific icon to use (with optional fallback images and mandatory keyword as a final fallback).</p>
</div>
<div class="box">
<h>Four</h>
<p>The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
The curser setting should inform users of the mouse operations that can be performed at the current location, including: text selection, activating help or context menus, copying content, resizing tables, and so on. You can specify either the type of cursor using a keyword, or load a specific icon to use (with optional fallback images and mandatory keyword as a final fallback).</p>
</div>
</div>
</body>
</html>