Quote:
Originally Posted by RbnJrg
SVG wrappers can be also used for half size images and they don't necessarily have to be 100% screen height (in fact, in my examples I used SVG wrappers);
|
I never thought about that… but it’s so obvious now that you mentioned it… super easy to change, just set the height of the div…
Code:
<head>
<title></title>
<style type="text/css">
* {margin:0; padding:0}
div {width:100vw; height:30vh}
</style>
</head>
Thanks!