Jump to content

iframe with css


Webmaster Tuhy

Recommended Posts

does anybody know how to make an i-frame or something similar to it with css? i really need help with this.
Yeah.
<iframe src="url" style="height:500px; width:400px; border:1px solid black;"></iframe>

There's your iframe ^ with css styling.As to make something similar to it with css... <div> maybe... You can also try frames if it's of any revalence to you.Links:html iframeshtml divshtml frames

Link to comment
Share on other sites

don't use iframe. just make a css stylesheet and do

#virtualframe {position: absolute;width: XXpx;height: XXpx;overflow: auto; /* OR scroll OR hidden OR visible, only auto and scroll applicable here */}

then in your html call it

<div id="virtualframe">text here text here text here</div>

Much easier and also better for site indexing.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...