mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 22:51:09 +08:00
14 lines
565 B
CSS
14 lines
565 B
CSS
.backgroundColor-#fff { background-color: #fff; }
|
|
.backgroundColor-transparent { background-color: currentcolor; }
|
|
|
|
.backgroundImage { background-image: none; }
|
|
|
|
.backgroundPosition-center { background-position: center; }
|
|
.backgroundSize-contain { background-size: contain; }
|
|
.backgroundSize-cover { background-size: cover; }
|
|
|
|
.backgroundRepeat-no-repeat { background-repeat: no-repeat; }
|
|
.backgroundRepeat-repeat { background-repeat: repeat; }
|
|
.backgroundRepeat-repeat-x { background-repeat: repeat-x; }
|
|
.backgroundRepeat-repeat-y { background-repeat: repeat-y; }
|