0

我遇到了阿芙罗狄蒂的问题,例如,如果我将基本组件设置为全局选择器margin: 0或任何边marginLeft, marginRight, marginTop,marginBottom设置。然后,当我尝试覆盖其中一个时,它不需要。

例如,然后我添加另一种样式的div集合不起作用。反过来也是一样。如果设置并且我设置它不起作用。margin: 0marginBottom: 10marginBottom: 10margin: 0

https://github.com/Khan/阿芙罗狄蒂

4

1 回答 1

0

来自文档:对象键排序

const styles = StyleSheet.create({
ordered: new Map([
    ["margin", 0],
    ["marginLeft", 15],
  ]),
});

请注意,并非所有浏览器都完全支持地图。它可以通过使用像es6-shim这样的包来填充。

于 2017-04-19T04:21:15.487 回答