【发布时间】:2018-07-28 04:46:04
【问题描述】:
何在 React-Native 中编写此 CSS 代码,因为我不知道如何在 react native 和 marginRadius 中编写 :before 和 :after 并给出四个值的错误请帮助我
div {
width:500px;
height:200px;
background:red;
position:relative;
overflow:hidden;
}
div:after,
div:before {
content:'';
background:white;
position:absolute;
top:-10px;
left:0;
width:100%;
height:20px;
border-radius:0 0 50% 50%;
}
div:after {
top:auto;
bottom:-10px;
border-radius:50% 50% 0 0 ;
}
【问题讨论】:
标签: css react-native