我正在使用字符串集为章节标题设置字符串。
当我添加内容并通过我的文档重复使用该字符串时,我希望它能够保留h1
(font-weight:bold
)的原始格式。
我该怎么做?我不能只对内容进行样式化,因为其余内容(“我的文档标题”)不应该是粗体。
目前,我正在使用字符串作为标题的一部分:
h1{
font-weight:bold;
string-set:chaptitle1 self;
}
@page chap1 {
@top-left {
content: "My Document Title" string(chaptitle1) ;
}
}
答案 0 :(得分:0)
也许我不完全理解你的问题,但你应该能够定义@左上角区域的属性。
示例:
@page chap1 {
@top-left {
content: "My Document Title" string(chaptitle1) ;
background-color: #ff0000;
color: white;
}
}
这将显示文本红色和文本白色的背景。这绝对适用于PrinceXML。