gpt4 book ai didi

html - Internet Explorer 中的 CSS 框

转载 作者:行者123 更新时间:2023-11-28 19:00:28 25 4
gpt4 key购买 nike

我在 IE8 IE7 IE6 中显示带有背景图像和边框图像的框时出现渲染问题

我的代码适用于 IE9、Safari、Firefox。

.myBox {
background : url(image-left.gif) left no-repeat,url(image-right.gif) right no-repeat, url(images-center.png) repeat-x;
height: 50px;
position:relative;
}

我创建了一个将左右图像放在表格中的解决方案:

CSS:

table {
height: 50px;
position:relative;
}

.myBox {
background : url(images-center.png) repeat-x;
}

html:

<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="image-left.gif" /></td>

<td>my content text</td>

<td><img src="image-right.gif" /></td>
</tr>
</table>

谁有更好更优雅的解决方案????

最佳答案

两种方法

当然你的方法也是有效的,虽然它会导致你改变你的标记..

关于html - Internet Explorer 中的 CSS 框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6055850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com