gpt4 book ai didi

css - Next.JS + AMP CSS

转载 作者:太空宇宙 更新时间:2023-11-04 05:37:43 25 4
gpt4 key购买 nike

我在 Next.js 中遇到 AMP 和 CSS 问题。在我的头部组件中,我有:

<Head>
<style amp-custom>{`
// CSS Here
`}</style>
</Head>

在 HTML 源代码中它显示为 <style amp-custom=""></style><style>(CSS Here)</style>

在控制台中我得到这个错误:The mandatory attribute 'amp-custom' is missing in tag 'style amp-custom (transformed)'.

如何在 CSS 和 Next 上使用 AMPHTML 的规则?我尝试过的所有其他方法(例如使用@zeit/next-sass 从文件导入)都会导致 CSS 根本无法呈现。这是我找到的唯一可用版本。

最佳答案

试试这个:

<Head>
<style
amp-custom=""
dangerouslySetInnerHTML={{
__html: `
amp-img {
border: 1px solid black;
}
`,
}}
></style>
</Head>

关于css - Next.JS + AMP CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59482125/

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