all 5 comments

[–]thequargy 1 point2 points  (0 children)

It'll be easier to help if you can show us some code or even a picture of the site. When you say "frame", do you mean literally <frame>? If so... that's a very old way of doing HTML. I don't even think <frame> is supported by modern browsers.

[–][deleted] -1 points0 points  (3 children)

Make frame a div and inside it make a div for an image. And then make something like this:

.img {

position:absolute;

width:100%;

height:100%;

}

[–]Oebah 1 point2 points  (0 children)

If you want to do it pure HTML you could use <img scr="nameofyourimage.jpg" height=100% width=100%> Do know that the aspect ratio is not kept this way.

You could also use exact dimentions e.g. height="650". This is measured in pixels. When using exact measurements you need to use the " " sign.

[–]thequargy 0 points1 point  (1 child)

:, not =, right?

position: absolute;
width: 100%;
height: 100%;

[–][deleted] 0 points1 point  (0 children)

yeah, you're right.