Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? 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在反应
html - 证明内容在真实元素中消失-LMLPHP

justifyContent消失
html - 证明内容在真实元素中消失-LMLPHP

最佳答案

您的CSS中有错别字:justifyContent: 'spcace-between'
应该是空间而不是空间。

10-02 15:13