0

我正在尝试在notice课堂上展示信息。

我尝试添加content:,但这不起作用。

.notice {
color:red;
content: "information below are instructions for this method for this page";
}

<div class="notice"></div>

content我想知道是否可以在div?中显示文本。notice每当我打电话给课堂时,我都想实际展示课堂上的内容notice。我有大约 40 页需要执行此操作,有些人可能会认为我应该在所有页面中输入它,但informationcontent更改中。

他们是在css中做到这一点的方法吗?

4

2 回答 2

0

content属性仅适用于:after:beforepsuedo 类,例如尝试:

.notice {
color:red;
}
.notice:after{
content: "information below are instructions for this method for this page";
}

<div class="notice"></div>

看到这个小提琴

也就是说,CSS 应该保留用于样式而不是内容——它应该在您的 HTML 中输出,并由您使用的任何服务器端技术(例如 PHP、Python)或 JS 桥控制。

于 2013-11-12T12:27:51.423 回答
0

我认为你的情况最好PHP ifnotice. 那会更有用

于 2013-11-12T12:32:04.370 回答