如何使用HTML / CSS创建1,5''方块

时间:2015-04-11 14:28:30

标签: html5 css3 user-interface

我想为用户创建一个界面。那个界面有1.5“。下面是代码:

.test{
	height: 52px;
	width: 52px;
	background: black;
	margin-left: auto;
	margin-right: auto;
}
<html>
<head>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<div class="test"></div>
</body>
</html>

我认为那些1,5“太小了。我为52px做的是: 英寸 - &gt; cm - &gt;像素

也许有正确的方法来创造它?

1 个答案:

答案 0 :(得分:0)

为什么不单独使用in

&#13;
&#13;
.test{
	height: 1.5in;
	width: 1.5in;
	background: black;
	margin-left: auto;
	margin-right: auto;
}
&#13;
<html>
<head>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<div class="test"></div>
</body>
</html>
&#13;
&#13;
&#13;