Hi All,
Its been years I have done any css and even then I wasnt very good at it. However I have decided that I am going to have another crack at it. I am trying to put a div on top of a div to look like the below example:
my css
/*Outer Div*/
.header{
position: relative;
float:left;
overflow: hidden;
/*inner div */
.float{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
float:right;
}
Any ideas, I have tried playing around with the postioning, but cant get it to work.
Thanks