Closed. This question is off-topic。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
2年前关闭。
我正在使用反应。我可以使用react工具在chrome中看到
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
2年前关闭。
circleSet: {
position: 'absolute',
top: 0,
left: 0,
display: 'flex',
width:'100%',
height: '104px',
alignItems: 'center',
justifyContent: 'spcace-between',
}
我正在使用反应。我可以使用react工具在chrome中看到
justifyContent
,但是它在实际元素中消失了。有人知道发生了什么吗?justifyContent
在反应justifyContent
消失最佳答案
您的CSS中有错别字:justifyContent: 'spcace-between'
。
应该是空间而不是空间。
10-02 15:13