Hello, everyone. I'm trying to get the company logo in my invoice PDF to have a fixed width, but scale down the image height so it stays the correct ratio. Right now I have this --
Copy code
img.logo {
width: 210px;
height: auto;
}
the width works, but the height isn't adjusted. is
height: auto
not supported, or could it have to do the with the container my logo image is contained in?