Having trouble setting a background image for the body correctly. My colleague passed me an SVG file to use as the background, but it's not displaying properly. Here is what I need to set in Adobe XD:
https://i.sstatic.net/ayZxW.jpg
And here is the result:
https://i.sstatic.net/YESut.jpg
Notice the space around the background - how can I fix this issue?
This is my HTML code:
<body>
some code
</body>
body{
background:url('../../Images/newback.svg');
background-repeat: no-repeat;
background-position: center;
}