如何在另一个jsp中设置嵌入jsp的样式?

发布于 2024-10-15 11:06:43 字数 105 浏览 1 评论 0原文

我是一个 css/javascript 初学者。我如何访问嵌入另一个 jsp 和 css 样式中的 jsp 的 HTML 元素?我不允许直接修改第一个,所以我想知道是否可以在第二个中设置它的样式。

I am a css/javascript beginner. How would I access an HTML element of a jsp that's embedded inside another jsp and css style it? I am not allowed to modify the first one directly, so I was wondering if I could style it from within the second one.

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

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

发布评论

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

评论(1

愛放△進行李 2024-10-22 11:06:43

如果我理解正确,您可以通过标签或属性(类、id、rel...)访问您的 Html

,也许这是您的 Html...

<div id="content">
    <p>Lorem Ipsum</p>
    <p class="para">Lorem Ipsum</p>
</div>

现在您可以使用各种选择器访问您的 Html:

/*CSS*/
div {color:red}
div > p {color:blue}
.para {color:green}
#content .para {background:red}

Good 资源: http://www.w3schools.com/css/css_intro.asp

If i understand you correctly you can access your Html by Tag or Attributes (class,id,rel...)

Maybe this is your Html...

<div id="content">
    <p>Lorem Ipsum</p>
    <p class="para">Lorem Ipsum</p>
</div>

And now you can access your Html with various selectors:

/*CSS*/
div {color:red}
div > p {color:blue}
.para {color:green}
#content .para {background:red}

Good ressource: http://www.w3schools.com/css/css_intro.asp

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