我将内容属性设置为虚线箭头“ - >”。但它看起来很小。我想在CSS
类中增加它的大小。它应该出现在每个 stage 类元素之前。 阶段类元素存在于inline-flex
。
.stage::before{
content: '\21E2';
color: black;
position: absolute;
top: 50%;
left: 0;
transform: translate(-100%, -50%);
z-index: 1;
}
答案 0 :(得分:1)
添加font-size
属性
.stage::before{
content: '\21E2';
color: black;
position: absolute;
top: 50%;
left: 0;
transform: translate(-100%, -50%);
z-index: 1;
font-size:20px /*add according you*/
}
答案 1 :(得分:0)
您更改它的方式与更改任何其他文本的方式相同。
使用font-size
CSS属性。