<!DOCTYPE html> | |
<html> | |
<head> | |
<title>SVG background-image tiling</title> | |
<style> | |
div{ | |
border: 1px solid #ccc; | |
width: 100%; | |
height: 100px; | |
background-image:url('resources/construction-tape.svg'); | |
background-size: 100px 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div></div> | |
</body> | |
</html> |