我们如何编写CSS“块级样式”在内联样式属性标签内?
大家好,我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。内联样式只能包含属性值声明;它们不能包含声明块或选择器。
不幸的是,您必须将
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 thep
elements, unfortunately...