English 中文(简体)
食疗中的焦炭
原标题:Height of a frame in pixels

我有70幅高血像。 我想确切地建立一个框架,以便我能够把自己的背景与这种形象混为一谈,而不会给人造成roll。

预期结果:

-------
|this has 70 pixels
--------
| the rest

我的html认为:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head><title></title></head>
<frameset rows="70,*">
    <frame noresize src="a.htm" >
    <frame noresize src="b.htm" >
</frameset>
</html>

a.htm研究这样的情况:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd"
<html><head><title></title></head>
<body style="background-image:url(70px_img.gif);background-repeat:repeat;" >
    <img src="another_70_px_img.png" style="float:left;" />
</body>
</html>

如今,第一胎的内面显然有70多只砂子,因此出现了bar。 它还对内部的其他形象进行了评估,因为它拥有一个很小的空洞空间,而底层则被 crop。 如果能够使内部框架达到准确的高度——我不禁要问,我是否必须确定一些边界。

我知道scrolling=“no”。 但是,这确实阻止了内心的 picture光。 我可以“解决”作物种植问题,给出内图:<条码>:50px,但不能<条码>:XX%,但这似乎并不正确。

I also know frames are evil, and plan to repurpose this into a <div> later. Will transition be smooth or will I have to realign things all over again?

最佳回答

You need to reset the margins and padding of html and body inside the frames:

<style type="text/css">
    html, body { margin:0; padding: 0}
</style>

This may get you started, but depending on what you want more may be needed. scrolling=no is probably also needed.

是的,对框架做了解释。 Od子是你们的 should子——但只有你们知道!

问题回答

Use overflow:hidden; to prevent the scrollbars if you don t have content going over the edges.

<body style="background-image:url(70px_img.gif);background-repeat:repeat;overflow:hidden;" >




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签