qrcode.js(qrcode.min.js)で生成したQRコードをセンタリングするCSS
javascript qrcode.js (qrcode.min.js)で生成したQRコードをセンタリングするCSS HTML QRコードを入れるdiv(id="QR") < div id = "QR" ></ div > javascript QRコード生成 var qrcode = new QRCode ( 'QR' , { text: 'QR test', width: window.innerWidth, height: window.innerWidth, correctLevel : QRCode.CorrectLevel. H }); css 中央寄せ #QR { display : flex ; justify-content : center ; } #QR img { width : 80% !important ; height : auto !important ; }