<html> | |
<style> | |
div { | |
display: inline-block; | |
} | |
svg { | |
width: 100px; | |
height: 100px; | |
margin: 10px; | |
} | |
rect { | |
opacity: 0.5; | |
} | |
</style> | |
<body> | |
<div> | |
<svg> | |
<rect width="100" height="100"></rect> | |
</svg> | |
</div> | |
<div> | |
<svg> | |
<rect width="100" height="100"></rect> | |
</svg> | |
</div> | |
<div> | |
<svg> | |
<rect width="100" height="100"></rect> | |
</svg> | |
</div> | |
<div> | |
<svg> | |
<rect width="100" height="100"></rect> | |
</svg> | |
</div> | |
</body> | |
</html> |