mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Fix: Render background-size correctly with no-repeat #447
This commit is contained in:
@ -19,15 +19,27 @@
|
||||
}
|
||||
|
||||
.horizontal div {
|
||||
width: 400px; height: 200px;
|
||||
width: 400px; height: 100px;
|
||||
}
|
||||
|
||||
.vertical div {
|
||||
width: 200px; height: 400px;
|
||||
width: 200px; height: 200px;
|
||||
}
|
||||
|
||||
.container {
|
||||
float: left;
|
||||
border: 1px solid black;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-image: url(../../assets/image.jpg);
|
||||
background-size: 34px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container"></div>
|
||||
|
||||
<div class="horizontal">
|
||||
<div style='background-size: cover;'></div>
|
||||
|
Reference in New Issue
Block a user