图像在 Chrome 中无法正确浮动

发布于 2024-12-09 17:32:09 字数 269 浏览 0 评论 0原文

在这个网站上> http://upcycledonline.com/test/Site/defaultUpCyc.html 当我查看它时在 Chrome 中,rightEdge 图像看起来像是被什么东西推下来了。我已经多次重新排列代码,并在不同的地方尝试了图像,但没有成功。请帮忙!

我应该把它放在 div 中并尝试让它做这样的事情吗?

On this site> http://upcycledonline.com/test/Site/defaultUpCyc.html when I view it in chrome the rightEdge image looks like it is pushed down by something. I have rearranged the code several times and tried the image in different places with no luck. Help please!

Should I throw it in a div and try to make it do something that way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗琴音 2024-12-16 17:32:09

您可以更改标记吗?如果是这样,请执行以下操作:

<div id="header" style="overflow:auto">...</div>
<img src="leftEdge.png" style="float: left;">
<div style="float:left;">
    <img src="topEdge.png" style="float: left;">
    <div id="content">...</div>
    <img src="bottomEdge.png" style="float: left;">
</div>
<img src="rightEdge.png" style="float: left;">

请注意:

  1. 新浮动 div 内的任何内容本身都不应该浮动。

  2. 您需要在标题上使用overflow:auto

  3. 您必须调整内容div的高度

You can change the markup? If so, do this:

<div id="header" style="overflow:auto">...</div>
<img src="leftEdge.png" style="float: left;">
<div style="float:left;">
    <img src="topEdge.png" style="float: left;">
    <div id="content">...</div>
    <img src="bottomEdge.png" style="float: left;">
</div>
<img src="rightEdge.png" style="float: left;">

Note that:

  1. Nothing inside the new floated div should itself be floated.

  2. You need that overflow:auto on the header

  3. You will have to adjust the height of the content div

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文