如何在DW中设置固定背景图?
发布网友
发布时间:2022-04-22 08:56
我来回答
共1个回答
热心网友
时间:2023-07-01 21:14
分类: 电脑/网络 >> 软件
问题描述:
我加入了背景图案,并在CSS设置为固定,但不起作用.
下面是代码,帮我看看是什么原因:
<>
<head>
<meta -equiv="Content-Type" content="text/; charset=gb2312">
<title>欢迎来到我的网页</title>
<style type=text/css>
<!--
body {
background-image: url(00hxf);
}
.unnamed1 {
background-attachment: fixed;
}
-->
</style></head>
<body>
解析:
请使用这个代码在你样式表中
<style>
.style_1{
color: slategray;
background-image: url("00hxf");
background-attachment: fixed;
}
</style>