001114-2

It is in HTML possible to specify that a picture is to be placed at the side of text, and the text is to "flow" around the picture, as in this question. How can this be specified? The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.

Answer

If you give the tag for the picture (1) the attribute ALIGN=LEFT (4), then text (1) will flow around the picture.
(1) causes text after the
to start after the picture instead of beside it.

A newer method, which is recommended by the standards but may not work with all browsers, is to use Cascading Style Sheets (CSS). The picture is then given the CSS attribute FLOAT:LEFT (5), and the picture is placed inside the box for the text which is to float around it. Text which should not float beside the picture is given the CSS attribute CLEAR:LEFT (1).

Example 1:

It is in HTML possible to specify <img src="arrow.gif" width="28" height="36" align="left"> that a picture is to be placed at the side of text, and the text is to "flow" around the picture, as in this question. How can this be specified? The rain in Spain stays mainly in the plain. The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.

It is in HTML possible to specify that a picture is to be placed at the side of text, and the text is to "flow" around the picture, as in this question. How can this be specified? The rain in Spain stays mainly in the plain. The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.The rain in Spain stays mainly in the plain.

 

 

List of exam questions