在输入元素的内容上应用CSS样式

时间:2013-01-16 14:35:20

标签: html css

input[type="radio"][class="selectorPrev"]:hover+ label:before {
content:'Previous image';
z-index:999;
position:relative;
}

是否可以在内容属性上应用margin-left:10px并保留所有res相同?这该怎么做?

1 个答案:

答案 0 :(得分:1)

是的,但您需要首先将伪元素指定为blockinline-block,因为它是作为内联元素生成的,因此不能有边距。

input[type="radio"][class="selectorPrev"]:hover + label:before {
  content:'Previous image';
  display:inline-block;
  position:relative;
  z-index:999;
  margin-left:10px;
}