how to reduce and adjust the background images. | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

how to reduce and adjust the background images.

18th Jun 2016, 1:59 PM
shrivas
shrivas - avatar
2 Respuestas
+ 4
background-size= "Auto" is the default value and will keep width and height of the image. "Lenght" let's you manually set width and height. If only one si given the other is set to "Auto". "Percentage" let's you set width and height in percentage of the parent element. "Cover" makes the image cover as much as possible. "Contain" sets width and height to the largest value based on the content area. Anyway the best practice is to scale the image and optimise it for your website. It will make it look nice without interfering too much on the CSS and also help your load times.
19th Jun 2016, 11:36 AM
Florin Dragos
Florin Dragos - avatar
0
Also simply like this. <img src="testimage" length="100px" width="90px" padding="20%" /> Replace my values with yours and you can add other stuff like alignment and what @Florin Damian Dragos said
4th Oct 2016, 11:36 AM
Arnold Gyan
Arnold Gyan - avatar