We have all seen the effect when one picture is inside a text blog and it doesn't brake the text but it is included in the text.The text in this case includes the image from one side - where we have a free margin between the borders of the pafe and the picture.In ather case the image just breaks the text in pieces and the text is placed around the picture.The same effect we can achieve with CSS for any blog element.
Including a text blog with other text in CSS is controled with "float" and "clear". "Float" makes a floating text blog.It can have the following values:
left-shaped from the left side;The text is around the element.The blog is attached to the left border of the surrounding blog, right-shaped from the right side;The text is around the element.The blog is attached to the right border of the surrounding blog,
none-The element is build into the document.The text can be built in to the blog from all sides.
The second tool is "clear".It allowes us to conrol the surrounding part.It forbides the availability of floating blogs around the text blog.This tool takes the following values:right,left,none,both:


