gpt4 book ai didi

html - JSP 的 firefox 和 Chrome 的奇怪行为

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:27 24 4
gpt4 key购买 nike

我有一个奇怪的问题,我被要求使用许多 Web 技术制作一个 Spring MVC 简单应用程序。目前我正在修改这个 Spring MVC Step-By-Step Tutorial part 2在 2.2 中,我被要求使用 CSS 样式格式显示 JSP。好的,我做到了,但问题是,当我使用 Firefox 时,除了背景颜色外,它没有显示 CSS 格式。但是当我使用 chrome 时,它​​会向我显示 CSS 完整格式。

    <html>
<head>
<style type="text/css">
body{
background-color: #C1CDCD;
background-image:url("logo.gif');
background-repeat:no-repeat;
background-position:right bottom;
margin-right:200px;}

h1{
font-style:oblique;
color:red;
text-align:center;
}

p#p1
{
font-style:italic;
font-family:"Times New Roman";
font-size:18px;
}

p#p2
{
font-style:thick;
font-family:"Times New Roman";
font-size:18px;
}
.colortext_thick{
font-style:normal;
font-weight:bold;
color:green;
}

.italictext{
font-style:italic;
}
</style>

<title>Hello :: Spring Application</title>
</head>
<body>
<h1>Hello World - Spring MVC Application</h1>
<p id="p1" class="italictext">Greetings. This is also my first CSS type format example..</p>
<p id="p2" class="colortext_thick">It is now <c:out value="${now}"/></p>
</body>
</html>

我无法弄清楚问题出在哪里。首先我以为我的代码有问题,但是当我在 chrome 上访问同一个应用程序时,它看起来很好。请帮忙。谢谢

已编辑:以下是 Firefox 和 Chrome 运行应用程序的示例图像 Chrome Firefox

最佳答案

看这里

background-image:url("logo.gif');

开盘价和收盘价不匹配。 Firefox 显然在那时停止了解析 CSS。

让他们匹配起来:

background-image:url("logo.gif");

关于html - JSP 的 firefox 和 Chrome 的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9244823/

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