gpt4 book ai didi

html - 请求跟踪器 - 在模板中包含 CSS

转载 作者:太空宇宙 更新时间:2023-11-03 17:34:39 25 4
gpt4 key购买 nike

我正在尝试更改默认模板“已在 HTML 中解决”,以便当用户收到说明票证已解决的电子邮件时,填写满意度调查(在电子邮件中链接)。

但我希望这个调查链接是星级评分,其中每颗星代表对调查处理的满意度水平的参数。为了进行星级评定,我使用了 HTML 和 CSS。

但是当我使用CSS时模板报错:

Could not compile the template of codeblock 'text-decoration: none; color: inherit;': syntax error at line 6 template

代码如下:

Subject: Resolvido: {$Ticket->Subject}

Content-Type: text/html

<style type="text/css">

a {

text-decoration: none;

color: inherit;

}

.rating {

unicode-bidi: bidi-override;

direction: rtl;

float: left;

}

.rating span {

display: inline-block;

position: relative;

width: 3.0em;

}

.rating span:before {

content: "\2606";

font-size: 50px;

}

.rating span:hover:before,

.rating span:hover ~ span:before {

content: "\2605";

cursor: pointer;

color: gold;

}

.clear {

clear: both;

}

</style>

<p>De acordo com nossos registros, o seu pedido foi resolvido. Se você tem qualquer outra questão, por favor, responda a esta mensagem.</p>

<p>Por favor, avalie o atendimento:</p>

<div class="rating">

<a href="https://www.example.com?param1=x&param2=y&rating=excelente"><span></span></a>

<a href="https://www.example.com?param1=x&param2=y&rating=bom"><span></span></a>

[more 3 stars]

</div>

<div class="clear">&nbsp;</div>

有谁知道我该如何解决这个问题?

最佳答案

我假设您已将模板声明为 Perl 类型。然后您需要用反斜杠转义大括号,否则 Text::Template 会混淆。

a \{

text-decoration: none;

color: inherit;

\}

关于html - 请求跟踪器 - 在模板中包含 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29953664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com