在哪里可以找到 react js 支持的所有样式属性列表?
Where can I find all list of style properties supported by react js?
像这样https://github.com/vhpoet/react-native-styling-cheat-sheet
如果所有东西都有属性,而不仅仅是样式,那就更好了。以及类似的任何其他有用的东西。谢谢
[这是针对 React NATIVE]
是的,在 React Native 文档中您可以找到组件的所有可用样式属性
Link : https://reactnative.dev/docs/text-style-props, https://reactnative.dev/docs/view-style-props
CSS中的示例:
background-color: '#ffffff';
在React.js中:
style={{ backgroundColor: '#ffffff' }}
React.js 使用 CSS 规则,所以你只需在 CSS 中找到
CSS Cheat sheet
像这样https://github.com/vhpoet/react-native-styling-cheat-sheet
如果所有东西都有属性,而不仅仅是样式,那就更好了。以及类似的任何其他有用的东西。谢谢
[这是针对 React NATIVE]
是的,在 React Native 文档中您可以找到组件的所有可用样式属性
Link : https://reactnative.dev/docs/text-style-props, https://reactnative.dev/docs/view-style-props
CSS中的示例:
background-color: '#ffffff';
在React.js中:
style={{ backgroundColor: '#ffffff' }}
React.js 使用 CSS 规则,所以你只需在 CSS 中找到 CSS Cheat sheet