-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss_boxsizing.html
31 lines (27 loc) · 1.54 KB
/
css_boxsizing.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
<!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:500px;
height:250px;
border: 2px solid black;
overflow:hidden;
}
</style>
</head>
<body>
<h1 align="center">Box-Sizing</h1>
<div id="box">
<p>For fundamental positive change to happen in the world, the world of everybody (all-at-once) must represent itself (all-at-once).
The world of everybody (all-at-once) must get out of the position of passively accepting guidance and receiving calls to virtue. The world of everybody (all-at-once) must accept the necessary position of taking control of the world-situation. That is what must happen—or else there can no longer be any hope of a cooperative world at peace.
2.
Political and cultural leaders are not, themselves, going to be able to make this change occur. Such a profound degree of change cannot be brought about by the virtuous voice alone. Rather, such a profound degree of change can only be brought about by the force of humankind as a collective whole, or the “everybody force”. The inherent collective of everybody-all-at-once actually is (always) the only true power—but that collective is not currently exercising that power, because that collective is dis-united and in chaos.
</p>
</div>
</body>
</html>