I thought that might happen, some of the code was eaten :(
so I'll just explain more in words only, many html statements are wrapped in angle brackets, thats the ones that look like the tip of an arrow. The start always points to the left, the end closing the statement points right.
We are manipulating the image and the tags for this are contained between these brackets and the first text you see will be img.
If you open this link you'll see the basic img tag which you'll see in the text editor html view. http://www.w3schools.com/tags/tag_img.asp
If you add the float: left; or right (it needs the : and ;) you are adding inline CSS. This is interpreted by the web browser which interprets the instruction at runtime.
This adds a whole raft of effects that aren't available through the text editors menu. Most will work in the same way on different browsers BUT this is not guaranteed,
Check the WC3 specs for statement compatibilities if something doesn't work.
I thought that might happen, some of the code was eaten :(
so I'll just explain more in words only, many html statements are wrapped in angle brackets, thats the ones that look like the tip of an arrow. The start always points to the left, the end closing the statement points right.
We are manipulating the image and the tags for this are contained between these brackets and the first text you see will be img.
If you open this link you'll see the basic img tag which you'll see in the text editor html view. http://www.w3schools.com/tags/tag_img.asp
If you add the float: left; or right (it needs the : and ;) you are adding inline CSS. This is interpreted by the web browser which interprets the instruction at runtime.
This adds a whole raft of effects that aren't available through the text editors menu. Most will work in the same way on different browsers BUT this is not guaranteed,
Check the WC3 specs for statement compatibilities if something doesn't work.