Created
June 15, 2019 16:32
-
-
Save matsu7874/e826ea927763946c7b87cd8fdae7848b to your computer and use it in GitHub Desktop.
名札作成用CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<link rel="stylesheet" href="print.css"> | |
</head> | |
<body class="print_pages"> | |
<div><img src="https://connpass-tokyo.s3.amazonaws.com/user/102097/ab7133f97e3546c6ba69044e09cf3418.png"></div> | |
<div><img src="https://connpass-tokyo.s3.amazonaws.com/user/60202/5ee5f9128bf4471b9d322a9766cfe4fa.jpg"></div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
/*A4縦*/ | |
width: 210mm; | |
height: 297mm; | |
page-break-after: always; | |
position: relative; | |
} | |
div{ | |
padding: 2.5mm; | |
float: left; | |
width: 40mm; | |
height: 40mm; | |
} | |
img { | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment