Ok, I'm a noob at CSS and now I want to experiment and self-teach myself.
How do I make a right and left column?
I have this:
http://www.xeoro.net/test/
+rep.
Printable View
Ok, I'm a noob at CSS and now I want to experiment and self-teach myself.
How do I make a right and left column?
I have this:
http://www.xeoro.net/test/
+rep.
Wouldn't you use layers/divs?
I am ?
<div align="right">
<div align="left">
<div style="position: absolute; left: AMOUNT OF PX AWAY FROM LEFT;"></div>
Edit that to help you like top: 0px; and left: 0px; and right: 0px;
What's that in pure css?
It would be
<div id="box"></div>
<style type="text/css">
#box{
position: absolute;
left: Amount of pixels like Myke said;
}
</style>