Skip to content

Instantly share code, notes, and snippets.

@matsu7874
Created June 15, 2019 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matsu7874/e826ea927763946c7b87cd8fdae7848b to your computer and use it in GitHub Desktop.
Save matsu7874/e826ea927763946c7b87cd8fdae7848b to your computer and use it in GitHub Desktop.
名札作成用CSS
<!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>
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