We have to copy html xml code to excel. The code contains also a base64 picture. When we paste the code (see example code below), the picture should be pasted as overlay (3 lines). When we paste this code in Windows Excel, it's functioning well, MAC Excel paste the picture in a cell in stead off ovelay. What can be wrong?
XML:
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><style>
td {
white-space:nowrap;
}
</style><body><table><tr><th>Picture</th><th>ProductNumber</th><th>EAN</th><th>productDescription</th></tr><tr rowspan="3"><td valign="top" align="center"><img src="data:image/jpeg;base64,
(Here is the, very long, base64 picture code) (sorry, I don't see how to upload this code, its too long, I recieve an error)
" sizing="3" height="55" width="55" alt="image"></td><td valign="top" rowspan="3">35530</td><td valign="top" rowspan="3">4433116644551</td><td valign="top" rowspan="3">Greenbox</td></tr></table></body></html>