我想为用户创建一个界面。那个界面有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;像素
也许有正确的方法来创造它?
答案 0 :(得分:0)
为什么不单独使用in
?
.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;