CSS中的自定义图像边框

时间:2012-11-24 13:29:52

标签: css

所以我想创建一个如下所示的文本字段:

enter image description here

可以调整大小,因为文本在某种程度上更短或更长

离; enter image description hereenter image description here

以下是我获得的部分enter image description hereenter image description hereenter image description here

那么有什么简单的方法可以用css来实现吗?

1 个答案:

答案 0 :(得分:0)

实施例

<style>


.class_name{border: 1px solid white;-moz-border-radius:19px;
-webkit-border-radius: 19px;
border-radius:5px;
-moz-box-shadow: 0px 0px 5px #666;
-webkit-box-shadow: 0px 0px 5px #666;
box-shadow: 0px 0px 5px #666;
padding:2px 10px;
text-align:center;
width:70px; height:auto;
margin:0px auto;}
</style>

html代码

<div class="class_name">sample</div>