我们如何编写CSS“块级样式”在内联样式属性标签内?

发布于 2024-12-24 21:37:23 字数 366 浏览 0 评论 0原文

大家好,我正在使用 Google 协作平台,我想在我的页面中编写一个非常简单的 CSS 脚本:

<style>p {background:#ccc;}</style>

但是,Google 删除了所有样式标签。他们提供的解决方案是将我们的样式放入内联属性中,如下所示:

<div style="...">

我已经尝试过,但它不起作用:

<div style="p {background:#ccc;}">

我想知道我们如何在内联样式属性标记中编写CSS“块级样式” ?

Hi all I'm using Google Sites and I want to write a very simple CSS script in my page:

<style>p {background:#ccc;}</style>

However, Google removes all style tags. The solution they provide is to put our styles in an inline attribute as such:

<div style="...">

I've tried this but it doesn't work:

<div style="p {background:#ccc;}">

I was wondering how do we write a CSS "block-level-styles" within an inline style attribute tag?

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

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

发布评论

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

评论(1

傲性难收 2024-12-31 21:37:23

你不能。内联样式只能包含属性值声明;它们不能包含声明块或选择器。

不幸的是,您必须将 background:#ccc 内联样式应用于所有 p 元素......

You can't. Inline styles can only contain property-value declarations; they can't contain declaration blocks or selectors.

You would have to apply the background:#ccc inline style to all the p elements, unfortunately...

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