模拟压力边界底部css

时间:2015-09-18 06:30:11

标签: html css border

.pressure{
    width: 100px;
    text-align: center;
    border-bottom: 3px solid #000;
}

这个css给出了这样的边界底部

enter image description here

我想要的就像

enter image description here

有没有办法在css中做到这一点?

jsfiddle

1 个答案:

答案 0 :(得分:0)

尝试这个



.pressure{
    width: 100px;
    text-align: center;
    border: 5px solid #000;
    border-radius: 50%/60%;
}

<div class="pressure"</div>
&#13;
&#13;
&#13;