-
Notifications
You must be signed in to change notification settings - Fork 790
Expand file tree
/
Copy pathflow-float-desc.html
More file actions
executable file
·34 lines (31 loc) · 1.21 KB
/
flow-float-desc.html
File metadata and controls
executable file
·34 lines (31 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Long description of example illustrating floating</title>
</head>
<body>
<h1>Long description of example illustrating floating</h1>
<p>This diagram illustrates the effects of floating a box.</p>
<p>
A document window is shown, with 8 lines (numbered 1 to 8), each 24px high. Since the
"inner" box has been floated to the right, all other text flows around it (on lines 1
through 4).
</p>
<p>
In the following PRE element, each 24 pixel line is simulated by two lines, the second
beginning with the appropriate number. Vertical bars represent the left edge of the
floated box. The lines, as they appear in the image, contain:
</p>
<pre>
1 Beginning of body contents. Start
2 of outer contents. End | Inner
3 of outer contents. End | contents.
4 of body contents.
</pre>
<p>
The default text color is black. "Start of outer contents" is red. "Inner contents" is
blue. "End of outer contents" is red.
</p>
<p><a href="../../Overview.html#img-flow-float">Return to image.</a></p>
</body>
</html>