2017-12-09 02:12:29 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-12-09 12:45:58 +03:00
|
|
|
<script type="text/javascript" src="../../test.js"></script>
|
2017-12-09 02:12:29 +03:00
|
|
|
<style>
|
|
|
|
div {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
border: 15px solid blue;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 5px;
|
2017-12-09 12:45:58 +03:00
|
|
|
background-image: url(../../assets/image.jpg);
|
2017-12-09 02:12:29 +03:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: content-box"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: padding-box"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: border-box"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: content-box; background-size: cover"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: padding-box; background-size: cover"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: border-box; background-size: cover"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: content-box; background-size: contain"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: padding-box; background-size: contain"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: border-box; background-size: contain"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: content-box; background-position: 15px 20px"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: padding-box; background-position: 15px 20px"></div>
|
|
|
|
<div style="background-repeat: no-repeat; background-origin: border-box; background-position: 15px 20px"></div>
|
|
|
|
<div style="background-repeat: repeat; background-origin: content-box"></div>
|
|
|
|
<div style="background-repeat: repeat; background-origin: padding-box"></div>
|
|
|
|
<div style="background-repeat: repeat; background-origin: border-box"></div>
|
|
|
|
</body>
|
2017-12-09 12:45:58 +03:00
|
|
|
</html>
|