Try editing the link and the content in this a tag. It's the miracle of HTML!
+
A tutorial on the intricacies of Float and Clear in CSS
+ The float property determines whether or not an element will float. Elements that are placed after the floating element will flow around it and can result in undesirable placement on the web page. To achieve desired placement the float property must be used in conjunction with the clear property.
+
Example 1 (using float with clear):
+ Using the float property while applying clear: both; to the following element.
+
Example 2 (using float without clear):
+ Using the float property without applying the Clear property to the following elements.
+
+
+ Float can also be used to float an image to the right in a paragraph. It also allow the first letter in a paragraph float to the left and separately stylized.
+
Example 1 (floating an image to the right of text):
+ This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text.
+
+
Example 2 (floating the first letter of a paragraph):
+ This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text.
+