Answers for "ImageBackground"

CSS
124

css background image

background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Posted by: Guest on April-07-2020
8

react native background image

return (
  <ImageBackground source={...} style={{width: '100%', height: '100%'}}>
    <Text>Inside</Text>
  </ImageBackground>
);
Posted by: Guest on June-13-2020
81

remove background from image

Use this one its best
linK: https://www.remove.bg/
Posted by: Guest on December-29-2020
2

add background image react native

return (
  <ImageBackground source={...} style={{width: '100%', height: '100%'}}>
    ......All Children tags
  </ImageBackground>
);
Posted by: Guest on October-30-2020
1

background css image

background-image: url('./image.jpg');
Posted by: Guest on October-05-2020

Browse Popular Code Answers by Language