Hello!
I want to insert an image to the top-right corner of each page:
The image logo.jpg is 400x125px. How can I scale down the image to 160x50px?
This code doesn't work:
Thanks in advance
Christian
I want to insert an image to the top-right corner of each page:
@page {
size: A4 landscape;
@top-right {
content: url('logo.jpg');
}
}
The image logo.jpg is 400x125px. How can I scale down the image to 160x50px?
This code doesn't work:
@page {
size: A4 landscape;
@top-right {
content: url('logo.jpg');
width: 160px;
height: 50px;
}
}
Thanks in advance
Christian