Claire
18
Q:

css background image size

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: auto;
}

#example2 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 300px 100px;
}
8
body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
2
<head>
<style>
#example1{
  border: 2px solid black;
  padding: 100px;
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
</style>
</head>
<body>
<div id="example1">
</div>
</body>
0

    #example1 {
  background: url(mountain.jpg);
  
    background-repeat: no-repeat;
  background-size: auto;

    }

#example2 {
  
    background: url(mountain.jpg);
  background-repeat: 
    no-repeat;
  background-size: 300px 100px;
} 
-1
/* One way */
background-size: cover;

/* Other option */
background-size: contain;
1

    #example1 {
  background: url(mountain.jpg);
  
    background-repeat: no-repeat;
  background-size: cover;

    } 
-1
.class{
	background: url("../images/icons/map.png") no-repeat center center/50px 50px fixed;
}
1
background-size: 100px 50px; /* 100px wide, 50px tall */
9
background-size: cover;
0

New to Communities?

Join the community