之前用css制作一个特定的表格

时间:2013-10-15 17:51:32

标签: css geometry

我尝试仅使用css获得此结果。我更喜欢把它变成css而不是使用图像,因为我将拥有这个国王的许多div但具有不同的宽度角度。

The shape i'm trying to have

你会在这里找到我尝试过的东西......但没有成功......

.bloc1:before{
content: "";
background-color: #123456;
width : 27px;
height : 27px;
margin-top : 10px;
transform: rotate(45deg);
 }

 .bloc1 {
 background-color: #000000;
 width : 107px;
 text-align: center;
 padding-top : 8px;
 height : 19px;
 color : #FFFFFF;
 text-transform: uppercase;
 font-size: 12px;
position: relative;
}

 .bloc1:after{
 content: "";
 background-color: #123456;
 width : 27px;
 height : 27px;
 margin-top : 10px;
 transform: rotate(45deg) ;
}

http://jsfiddle.net/wBNry/

对你而言,最好的方法是什么?

非常感谢:)

1 个答案:

答案 0 :(得分:0)

JSFiddle Demo

.bloc1:before,
.bloc1:after {
    content: "";
    width:0;
    height:0;
    border: 15px solid transparent;
    position:absolute;
    top:0;
}

.bloc1 {
    background-color: #000000;
    width : 107px;
    text-align: center;
    height : 30px;
    color : #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    margin:50px;
}
.bloc1:before {
    right:100%;
    border-right-color:red;
}

.bloc1:after{
    left:100%;
    border-left-color:red;
}