gpt4 book ai didi

css - React 组件中的内联 CSS 问题

转载 作者:行者123 更新时间:2023-12-03 13:23:42 25 4
gpt4 key购买 nike

我有一个 react 组件,我正在尝试使用 margin-left 属性对齐下面的 div 。我收到控制台错误:

Unexpected token

指向 margin left 属性中的连字符。谁能帮忙解决这个问题吗?

<div id="loadingDiv" style = {{display:'block'}}>
<img src={Loading} style = {{width:150,height:150,margin-left:370}} />
</div>

最佳答案

这样写:

style = {{ width : 150, height : 150, marginLeft : 370 }}

不要使用 margin-left,而是使用 marginLeft

原因:

In React, inline styles are not specified as a string. Instead they are specified with an object whose key is the camelCased version of the style name, and whose value is the style's value, usually a string.

margin-left      -->   marginLeft 
padding-top --> paddingTop
background-color --> backgroundColor

检查DOC .

关于css - React 组件中的内联 CSS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43534384/

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