How To Stretch And Scale An Image In The Background With CSS
Có thể bạn quan tâm
Topic: HTML / CSSPrev|Next
Answer: Use the CSS background-size Property
You can use the CSS background-size: cover; to stretch and scale an image in the background with CSS only. This scales the image as large as possible in such a way that the background area is completely covered by the background image, while preserving its intrinsic aspect ratio.
However, part of the image may not be visible (cropped either vertically or horizontally) if the width or height of the resized background image is too large from the element.
Let's try out the following example to understand how this property basically works:
Example
Try this code » <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Stretch and Scale Background-image with CSS</title> <style> .box{ width: 300px; height: 300px; background: url("images/avatar.svg") no-repeat; background-size: cover; border: 6px solid #333; margin: 20px; } </style> </head> <body> <div class="box"></div> </body> </html>If it doesn't work for you then you can try other values like, background-size: contain;, background-size: 100%;, background-size: 100vw 100vh;, etc.
See the reference on CSS3 background-size property for more details.
Related FAQ
Here are some more FAQ related to this topic:
- How to position text over an image using CSS
- How to apply multiple background images to an element using CSS
- How to transform image size on mouse hover without affecting the layout in CSS
Từ khóa » Html Stretch Width
-
Html - How To Stretch The Width Of An Element, So That It's 100%
-
The "align-content: Stretch;" - Tryit Editor V3.7
-
Wix Editor: Stretching An Element To Full Width | Help Center
-
Fit-content - CSS: Cascading Style Sheets - MDN Web Docs
-
Font-stretch - CSS: Cascading Style Sheets - MDN Web Docs
-
How To Stretch A Div To Full Width Of Browser Code Example
-
How To Stretch The Div Element? I Want My Div To Be 100% Wide.
-
Full Width Containers In Limited Width Parents - CSS-Tricks
-
Stretch Input Field To Full Width - HTML CSS CSS Form
-
How To Stretch Div To Fit The Container ? - GeeksforGeeks
-
Stretch Input Field To 100% - Gists · GitHub
-
Use Width:auto, Left:0, And Right:0 To Stretch An Absolute Element To ...
-
Html Css How To Get An Image To Stretch 100 Width Of A Container ...
-
Stretch Image To Full Width Of Container?