gpt4 book ai didi

javascript - 样式组件中的 CSS calc()

转载 作者:行者123 更新时间:2023-11-28 16:45:30 24 4
gpt4 key购买 nike

试试这个:

const styledDiv = styled.div`
${props => props.takeViewportHeight && `min-height: calc(100vh-16px);`}
`

它不工作。我是否遗漏了样式组件中有关 calc 的内容?

最佳答案

关于 CSS calc 的有趣提示:

whitespaces are required between +/-

含义:

const styledDiv = styled.div`
${props => props.takeViewportHeight && `min-height: calc(100vh - 16px);`}
`

应该可以

关于javascript - 样式组件中的 CSS calc(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60602090/

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