HTMLで解像度壁紙

解像度ごとの四角が並んだだけの壁紙のhtml版。
htmlなので自由に解像度の追加が出来る。

<html>
<head>
<title>解像度壁紙</title>
<style>
* {
	padding		: 0;
	margin		: 0;
}
body {
	background-color: black;
	padding	: 10px;
}
div {
	border			: solid 1px white;
	position		: absolute;
	text-align		: right;
	color			: white;
}
div.s1024x768  { width: 1024px; height: 768px; }
div.s1366x768  { width: 1366px; height: 768px; }
div.s1600x900  { width: 1600px; height: 900px; }
div.s1920x1080 { width: 1920px; height:1080px; }
</style>
</head>
<body>
<div class="s1024x768 ">1029×768 XGA</div>
<div class="s1366x768 ">1366×768 HD (WXGA)</div>
<div class="s1600x900 ">1600×900 HD+(WXGA++)</div>
<!-- <div class="s1920x1080">1920×1080 フルHD</div> -->
</body>
</html>