我试图编写一些可能带有页面标题的CSS(由h1元素的内容定义)并将该内容粘贴到具有类" DocTitle"的每个元素中。我只限于使用CSS和HTML。
建议?
<head>
<style>
.DocTitle {
content: element(runningheader);
.pagetitle h1 {
position: running(runningheader);
}
</style>
</head>
<body>
<div class="DocTitle"></div>
<h1 class="pagetitle">This is the page title</h1>
<span class="DocTitle">This should be replaced</span>
</body>
基于研究,我本以为这可能有用,但我认为只有在你使用页面规则时它才有效,而且我不认为我可以在一个规则中将内容应用到一个类。尽管如此,我并不是百分之百,因为我并不确定我能做什么,不能做什么。作为参考,这用于生成打印介质。