前端之家收集整理的这篇文章主要介绍了
html – 当标签具有固定宽度时,如何在标签开始之前显示星号,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的
标签前
显示星号,表明它是必填字段.以下是我的
标签的css id
代码,
#label{
float: left;
height: 30px;
padding-right: 4px;
padding-top: 2px;
position: relative;
text-align: right;
vertical-align: middle;
width: 73px;
}
上面的输出是,
* 标签
但我希望它像,
*标签
谢谢
使用:伪类之前
.label:before{
content:"*" ;
color:red
}
要么
#req:before{
content:"*" ;
color:red
}
DEMO Updated
原文链接:https://www.f2er.com/html/223942.html