JSを使用してページを印刷しています。画面上のテキストのサイズに関係なく、大小を問わず、常に同じサイズのテキスト (約 10px) が印刷される理由を誰か教えてください...
<a id="printPageButton" onclick="printPage();">
<button>Print</button>
</a>
<script type="text/javascript">
function printPage() {
//Get the print button and put it into a variable
var printButton = document.getElementById("printPageButton");
//Set the print button visibility to 'hidden'
printButton.style.visibility = 'hidden';
//Print the page content
window.print()
//Set the print button to 'visible' again
//[Delete this line if you want it to stay hidden after printing]
printButton.style.visibility = 'visible';
}
</script>
ありがとう