gpt4 book ai didi

css - 无法在 Visual Studio 2010 中设置背景图像

转载 作者:行者123 更新时间:2023-11-28 17:07:53 35 4
gpt4 key购买 nike

我在使用 Visual Studio 时遇到了这个问题,这让我抓狂。我只是不知道这里出了什么问题。这就是问题所在。我只是无法在 VS2010 中设置背景图像。因此,我使用 File -> New Project -> Web -> ASP.NET Web Application 创建了我的 html 页面。我在那个页面上包含了指向 CSS 页面的链接。转到源页面并将我的指针放在 body 标记中。返回设计页面并选择应用新样式。选择器设置为正文,在现有样式表中定义并选择 CSS 文件的 URL。转到背景 ->背景图像并浏览选择我的图像。 X 和 Y 背景位置被发送到中心。在那之后,我点击应用和确定。现在,在 Visual Studio 中,设置了背景图像,我可以看到它。另外,我查看了 CSS 文件,发现有一个 body 定义的样式。因此,Visual Studio 正在显示它,它也在 CSS 文件中指定。但是,当我保存并按 F5 时,它不会在网络浏览器上显示。任何人,请帮助我,我很难坚持下去。这是 HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="Styles/Site.css" rel="stylesheet" type="text/css" />
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<style type="text/css">
.style1
{
width: 100%;
}
</style>
</head>
<body>

<table class="style1">
<tr>
<td>
SITE NAME</td>
</tr>
<tr>
<td>
<a href="instruction.htm">Instruction</a><a href="author.htm">Author</a></td>
</tr>
<tr>
<td>
&nbsp;</td>
</tr>
</table>

</body>
</html>

还有 CSS:

body
{
background-image: url('../background.jpg');
background-position: center center;
}

这是来自 Visual Studio 内部的图像,显​​示我在这里看到了背景(不要介意图片,一些与农场相关的东西 xD): Visual Studio Image

最佳答案

您应该将图像放在元素的当前路径中,连同您自己的 aspx 文件或放在元素中的文件夹中像这样的事情g:/myASPNETproject/myASPNETproject/WebForm1.aspx//你的网页

g:/myASPNETproject/myASPNETproject/background.jpg

body
{
background-image: url('background.jpg');
background-position: center center;
}

g:/myASPNETproject/myASPNETproject/images/background.jpg

   body
{
background-image: url('images/background.jpg');
background-position: center center;
}

关于css - 无法在 Visual Studio 2010 中设置背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48367863/

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