mycurelabs / vue-html-to-paper

Vue mixin for paper printing html elements.
MIT License
298 stars 101 forks source link

Image size issue #45

Closed robertnicjoo closed 4 years ago

robertnicjoo commented 4 years ago

Somehow I can't set image size in print preview

00

@media print {
        @page {
            size: A4;
        }
        .el-image img {
            width: 200px !important;
            height: 200px !important;
        }
}

Any idea how to set image size?

jofftiquez commented 4 years ago

Actually it's a bit challenging to handle styles in print page, I not entirely sure what's wrong with this but I'm sure that it's not because of the this plugin. Try to check this article you might find something helpful.

https://www.smashingmagazine.com/2015/01/designing-for-print-with-css/