我正在尝试复制this page上的白框,其中显示“您的成功”。
body{
background-color:#DFDFDF;
}
.index_whitebox{
background-color: #fff;
height: 60%;
width: 25%;
position: absolute;
margin-left: 4%;
margin-bottom: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 10px;
}
<div class="index_whitebox">
</div>
我认为没有border-style
我使用%来获得移动兼容性。我似乎无法使边界正确。
答案 0 :(得分:2)
如果您查看&#39;检查元素&#39;你实际上可以看到他们是如何编码的。我把它们使用的主要部分聚集在一起,因为有些人使用的是CSS文件而其他人则是内联的。
.class1 {
left: 1px;
width: 302px;
position: absolute;
top: 445px;
height: 378px;
}
.class2 {
left: 1px;
width: 302px;
position: absolute;
top: 445px;
height: 378px;
}
.class3{
border: 2px solid rgba(255, 255, 255, 1);
background-color: rgba(255, 255, 255, 1);
border-radius: 5px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
一切都在这里: