Created
October 13, 2022 18:25
-
-
Save jamiemarsland/f27cb41835286e8045f3bfe4ac8947b7 to your computer and use it in GitHub Desktop.
Add Background image to Gutenberg Columns Block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.shorts { | |
background-image: url('https://woo.us2.instawp.xyz/wp-content/uploads/2020/09/product-w-jeans1.jpg'); | |
background-color: #cccccc; /* Used if the image is unavailable */ | |
height: 500px; /* You must set a specified height */ | |
background-position: center; /* Center the image */ | |
background-repeat: no-repeat; /* Do not repeat the image */ | |
background-size: cover; /* Resize the background image to cover the entire container */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment