Tutorials for making horizontal site

pryidevsblog

New member
Hey I design one site without using any flash, javascript and Jquery also. It's a bit a good I guess but now I want to creat a site which is scroll horizontal. Anybody have any tutorials so that I can create this kinda site. Your reply are appreciated. :)
 
It's relatively straightforward to create a web site that simply scrolls horizontally in your browser. The simplest method would be to just float some containers of content beside each other. Generally speaking you would likely need to wrap them in a fixed width container of some sort though that is set to a width well beyond your browser window and enough to accommodate them all - this is to keep them from re-arranging to fill the window, which they are specified to do by default in CSS. You can read more about CSS floats here:

All About Floats | CSS-Tricks

Any other horizontal style layouts aside from that are generally going to require some bit of javascript, jquery or perhaps Flash (though I wouldn't recommend it).
 
Back
Top