CSS3で要素を拡大縮小したい場合は下記のように記述します。
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>sample</title>
<link href="stylesheet.css" rel="stylesheet"/>
</head>
<body>
<div id="sample">
<div id="scale">
<h1>sample</h1>
</div>
</div>
</body>
</html>
stylesheet.css
#sample {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#scale {
transform: scale(4.0);
}
index.htmlを実行すると下記のようにブラウザで表示されます。
要素を縮小:
#scale {
transform: scale(0.2);
}