i need to know how to put images on myspace side by side to save room please tell me where to put the html like after the picture or before or whatever thnx
How do i put images on myspace side by side instead of going down?
this makes them go across
%26lt;img src="image1.jpg"%26gt;
%26lt;img src="image2.jpg"%26gt;
%26lt;img src="image3.jpg"%26gt;
or this
%26lt;img src="image1.jpg"%26gt;%26lt;img src="image2.jpg"%26gt;%26lt;img src="image3.jpg"%26gt;
this makes them go down
%26lt;img src="image1.jpg"%26gt;%26lt;br%26gt;
%26lt;img src="image2.jpg"%26gt;%26lt;br%26gt;
%26lt;img src="image3.jpg"%26gt;
or this
%26lt;img src="image1.jpg"%26gt;%26lt;br%26gt;%26lt;img src="image2.jpg"%26gt;%26lt;br%26gt;%26lt;img src="image3.jpg"%26gt;
How do i put images on myspace side by side instead of going down?
Images, like text, will wrap if there is not enough room to display them. i.e. if the containing element is not wide enough.
Here's one hack using the no-break tag:
%26lt;nobr%26gt;%26lt;img src="1" /%26gt;%26lt;img src="2" /%26gt;%26lt;/nobr%26gt;
Or with CSS:
%26lt;div style="white-space: nowrap; width:300px"%26gt;
%26lt;img src="1" /%26gt;%26lt;img src="2" /%26gt;
%26lt;/div%26gt;
No comments:
Post a Comment