在CSS中创建十字形状

时间:2013-06-28 07:48:18

标签: css shapes css-shapes

是否可能,我知道在此链接中可以使用以下所有形状:

http://css-tricks.com/examples/ShapesOfCSS/

但也必须交叉。当我说十字架时我的意思是这样的:

enter image description here

5 个答案:

答案 0 :(得分:39)

你可以用伪元素来实现这样的目标:

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%),
}

答案 1 :(得分:6)

当然是。您只需使用两个元素:请参阅http://jsfiddle.net/92XTx/2/

封闭的div是relative定位的,这样两个孩子都可以绝对定位。

#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%;
}

答案 2 :(得分:3)

因为我在这里看到的所有答案都看起来很长或依赖于供应商前缀,

#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>

答案 3 :(得分:2)

这可以使用常规的'+'加号字符和text-stroke

来完成

DEMO Webkit,Android only

div {
  font-size: 80px;
  -webkit-text-stroke: 20px red;
  display: inline-block;
  padding: 0 20px;
}
<div>+</div>

答案 4 :(得分:0)

CSS变换可以很容易地用于实现加上形状

.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);
}