在CSS中,可以使用/* */来注释代码style jsx
。NextJS中如何注释里面的代码。我在网上搜索了这个,但没有找到。
<style jsx>{`
table,th,td{
border: 2px solid black;
}
#OOP{
//height: 10vh;
/*background-color: #28DE65;*/
//Both of these comment styles doesn't work inside style jsx
}
`}</style>