我试图用CSS制作一个水晶棒。 Here is a JS Bin
根据显示器的不同分辨率,3个形状会被错放。我见过很多次把形状放在正确的地方。是否有更好的方法来操纵形状的位置?
编辑: 我的第二种方法(another JS Bin)将div组合在一起。但这也不太好用。 (不能使形状居中,也不能旋转)
答案 0 :(得分:1)
这是你的想法吗?
<div class="bar"></div>
body {
background: #111;
}
.bar {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 10px;
height: 200px;
background-color: #aef;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.bar:before, .bar:after {
position: absolute;
left: 0;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
content: '';
}
.bar:before {
top: -10px;
border-bottom: 10px solid #aef;
}
.bar:after {
bottom: -10px;
border-top: 10px solid #aef;
}