Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other iframe x,y positioning? Re: iframe x,y positioning?

#104084
JoshWhite
Member

In the last situation I had to do this, I used CSS to accomplish it. It looked kind of like this:


#outerdiv {
width: 500px; position: relative;
}
#innerdiv {
position: absolute; left: -320px; top: -220px;
overflow:hidden;
}






Managed to do the job, but I don’t know if it’s “correct” in terms of design practice lol.