我开发了一个jsp页面,现在我想改变它的UI,但即使使用新的css,UI也没有改变

发布于 2024-11-03 12:05:52 字数 879 浏览 1 评论 0 原文

我开发了一个jsp页面,现在我为该页面获得了新的UI,所以我想将旧的UI更改为新的UI,但是经过大量的努力,即使在使用新的css之后,UI也没有改变。

这是 css

<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="stylesheet" href="css/reset.css" /> 
<link rel="stylesheet" href="css/fonts.css" /> 
<link rel="stylesheet" href="css/main.css" />
<link type="text/css" href="css/custom-theme/jquery-ui-1.8.9.custom.css" rel="stylesheet" />
<link rel="stylesheet" media="screen" type="text/css" href="css/spacegallery.css" />  --> 
<!-- <link href=" css/dropdown/dropdown.css"  rel="stylesheet" type="text/css"/>
<link href=" css/dropdown/themes/default.advanced.css" rel="stylesheet" type="text/css" /> 

新代码

<link href="intra_style.css" rel="stylesheet" type="text/css" />

的旧代码,请帮助我。 谢谢

I developed one jsp page ,now I get new UI for this page so I want to change my old UI to new one but after lots of efforts ,even after use of new css,UI is not changing.

Here is old code for css

<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="stylesheet" href="css/reset.css" /> 
<link rel="stylesheet" href="css/fonts.css" /> 
<link rel="stylesheet" href="css/main.css" />
<link type="text/css" href="css/custom-theme/jquery-ui-1.8.9.custom.css" rel="stylesheet" />
<link rel="stylesheet" media="screen" type="text/css" href="css/spacegallery.css" />  --> 
<!-- <link href=" css/dropdown/dropdown.css"  rel="stylesheet" type="text/css"/>
<link href=" css/dropdown/themes/default.advanced.css" rel="stylesheet" type="text/css" /> 

new code

<link href="intra_style.css" rel="stylesheet" type="text/css" />

please Help me.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不美如何 2024-11-10 12:05:52

获取 FirefoxFirebug 然后你可以检查你的页面是否完全渲染。你把旧的 css 包含拿出来了吗?像css/main.css之类的?如果不是,则应用 CSS 对象的第一个声明。

Get Firefox and Firebug then you can inspect your page completely rendered. Did you take out your old css includes? Like css/main.css and so on? If not then the first declaration of an CSS-Object is applied.

晨曦÷微暖 2024-11-10 12:05:52

1)确保intra_style.css应位于jsp所在的同一文件夹中。
2)删除所有以前的CSS包含。
3)检查样式表的类名称是否与您的 HTML 样式类名称相匹配。

1)make sure that intra_style.css should be in same folder where your jsp exist.
2)Remove all previous CSS includes.
3)Check out Class names of your style sheet are matching Ur HTML Style Class names.

岁月无声 2024-11-10 12:05:52

首先检查 CSS 是否可以在 Firefox 中使用 FirebugGoogle Chrome 中的开发者工具

第二:你的intra_style.css是你的jsp的dame文件夹吗?正如我在旧 CSS 上看到的,它有一个文件夹 css/。尝试如下 href

<link href="css/intra_style.css" rel="stylesheet" type="text/css" />

第三:尝试删除浏览器上的 cookies/ineternet 历史记录。我的意思是缓存。

First check the CSS if you can view the code using Firebug in Firefox or Developer Tools in Google Chrome.

Second: is your intra_style.css is the dame folder with your jsp? As I can see on your old CSS it has a folder css/. Try it the href like this:

<link href="css/intra_style.css" rel="stylesheet" type="text/css" />

Third: Try to delete the cookies/ineternet history on your browser. What I mean is the cache.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文