有可能吗,我知道此链接中可以使用以下所有形状:
http://css-tricks.com/examples/ShapesOfCSS/
但交叉也必须是可能的。当我说十字架时,我的意思是这样的:
您可以仅使用伪元素来实现类似的效果:
http://jsbin.com/upiyoc/1/edit
#cross {
width: 100px;
height: 100px;
position: relative;
}
#cross:before, #cross:after {
content: "";
position: absolute;
z-index: -1;
background: #d00;
}
#cross:before {
left: 50%;
width: 30%;
margin-left: -15%;
height: 100%;
}
#cross:after {
top: 50%;
height: 30%;
margin-top: -15%;
width: 100%;
}
根据元素的width
和height
,十字的大小将按比例缩放#cross
更新:另一种解决方案(使用更少的代码)可以简单地涉及多个线性梯度(没有伪元素),例如
http://codepen.io/anon/pen/zxwgPo
#cross {
width: 100px;
height: 100px;
background: linear-gradient(to bottom, transparent 35%,
#d00 35%,
#d00 65%,
transparent 65%),
linear-gradient(to right, transparent 35%,
#d00 35%,
#d00 65%,
transparent 65%),
}
当然是。你只需要使用两个元素:见http://jsfiddle.net/92XTx/2/
封闭的 div 是relative
ly 定位的,因此两个孩子都可以绝对定位。
#cross {
position: relative;
width: 150px;
height: 150px;
}
在这里,它们都处于绝对位置:
#cross div {
position: absolute;
background: red;
}
使它们叠加。
然后创建你的形状:
.cross-vertical {
left: 33%;
width: 33%;
height: 100%;
}
.cross-horizontal {
top: 33%;
width: 100%;
height: 33%;
}
因为我在这里看到的所有答案看起来要么冗长要么依赖于供应商前缀,
#cross {
background: red;
height: 100px;
position: relative;
left: 50px;
width: 20px;
}
#cross:after {
background: red;
content: "";
height: 20px;
left: -40px;
position: absolute;
top: 40px;
width: 100px;
}
<div id="cross"></div>
这可以使用常规的“+”加字符和text-stroke
div {
font-size: 80px;
-webkit-text-stroke: 20px red;
display: inline-block;
padding: 0 20px;
}
<div>+</div>
使用 CSS Transform 可以轻松实现加号
.close {
position: absolute;
right: 10px;
top: 6px;
width: 20px;
height: 20px;
opacity: 0.3;
}
.cross:before, .cross:after {
position: absolute;
left: 15px;
content: ' ';
height: 21px;
width: 2px;
background-color: #333;
}
.cross:before {
transform: rotate(0deg);
}
.cross:after {
transform: rotate(-90deg);
}