18

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

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

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

在此处输入图像描述

4

5 回答 5

42

您可以仅使用伪元素来实现类似的效果:

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

根据元素的widthheight,十字的大小将按比例缩放#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%),
}
于 2013-06-28T07:53:25.497 回答
6

当然是。你只需要使用两个元素:见http://jsfiddle.net/92XTx/2/

封闭的 div 是relatively 定位的,因此两个孩子都可以绝对定位。

#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%;
}
于 2013-06-28T07:54:29.240 回答
5

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

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

于 2016-05-10T15:16:52.267 回答
3

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

演示 Webkit,仅限安卓

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

于 2015-01-22T12:15:10.227 回答
0

使用 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);
}
于 2017-02-09T03:52:33.697 回答