circleSet: {
position: 'absolute',
top: 0,
left: 0,
display: 'flex',
width:'100%',
height: '104px',
alignItems: 'center',
justifyContent: 'spcace-between',
}
我正在使用反应。我可以在带有反应工具的chrome中看到justifyContent
,但它在真实元素中消失了。谁知道发生了什么?
答案 0 :(得分:1)
你的css中有一个拼写错误:justifyContent: 'spcace-between'
。
它应该是空间而不是spcace。