Ok so i'm new to angular and I have a project to do, im trying to put those 4 buttons and a background image to fit the whole page. I put the buttons in a table to help me arrange it but for some reason the background image fit only behind those buttons = table.
Also, whenever I try to load an image from my computer I get the broken image error. The picture location is the same as the HTML code.
One more thing, is there any fast way to arrange buttons,images etc?
Thanks in advance :)
<body background="here is the url of the background">
<table class="center" >
<tr>
<td><button class="btn btn-1 btn-sep icon-info">A</button></td>
<button class="btn btn-4 btn-sep icon-send">B</button>
</tr>
<tr>
<td><button class="btn btn-2 btn-sep icon-cart">C</button></td>
<td><button class="btn btn-3 btn-sep icon-heart">D</button></td>
</tr>
</table>
and the result looks like this https://i.stack.imgur.com/rxl4q.jpg i want the background to fill also the white areas...