React 基础:组件样式/内联样式
原文英文,约200词,阅读约需1分钟。发表于: 。The inline style must be written in Javascript. ・The name of the property must be 'style' ・It makes no difference whether you set the style by dividing a value or by setting it directly. ・The...
在JavaScript中,内联样式使用'style'属性,属性名采用驼峰命名,如fontWeight: 'bold'。如果使用CSS风格(kebab-case),需要用引号包裹。示例代码展示了一个按钮,点击后背景变为粉色,并在中心显示'Clicked!'。