如何在十字路口表插入圆圈?

时间:2018-02-19 19:38:54

标签: html css3

如何在十字路口表插入圆圈,或从布局中使用图像(表格)?

this table on img

1 个答案:

答案 0 :(得分:0)

如果您想在边框顶部使用圆圈,请使用:在css属性之前。 example

 div{
  border-right: solid white 1px;
  width:300px;
  height:200px;
}
div:before {
    content: '';
    position: absolute;
    border: 10px solid white;
    border-radius:100px;
    margin-left:290px ;
}

它可以帮助您通过一些修改来获得像图像一样的设计。