gpt4 book ai didi

css - chrome 中的 css 背景属性不起作用

转载 作者:行者123 更新时间:2023-12-02 21:44:58 24 4
gpt4 key购买 nike

我尝试了以下代码:

CSS:

.bg_left{
background-image: url(path/image.jpeg);
background-repeat: no-repeat;
background-position: left bottom;
background-color: #FF0000;
color:#FFFFFF;
height:150px;

}
table{width:100%;}

HTML:

<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 responsive website tutorial</title>

</head>
<body>
<table>
<tr class="bg_left">
<td>Helloo
</td>
<td>Logout</td>
</tr>
</table>
</body>
</html>

但是为什么它在 IE 和 Firefox 中运行良好,而在 chrome 中却重复出现?

最佳答案

CSS

.bg_left{
background-image: url(images/banner1.jpg);
background-repeat: no-repeat;
background-position: left top;
background-attachment:fixed;
background-color: #FF0000;
color:#FFFFFF;
height:150px;
}
table{
width:100%;
}

HTML

<table>
<tr class="bg_left">
<td>Helloo</td>
<td>Logout</td>
</tr>
</table>

关于css - chrome 中的 css 背景属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19675389/

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