ちょうど:before
と:after
で遊んでいます。CSS3:入力後の擬似要素
input
ボタンで使用することはできないようですか?私は潜在的にそれが必須フィールドのアスタリスクを表示する使用することができると思った。必ずしもそうではない私は、ちょうどのオプションを何をするか
input {
position: relative;
}
input:after {
content: '';
background: url(accept.png) 0 0 no-repeat;
height: 16px;
position: absolute;
right: -20px;
top: 5px;
width: 16px;
}
同じコードが、残念ながら最も簡単な方法は私も同じことが、有用であろうと考えましたli
li {
clear: both;
margin: 0 0 10px;
position: relative;
}
li:after {
content: '';
background: url(accept.png) 0 0 no-repeat;
height: 16px;
position: absolute;
right: -20px;
top: 5px;
width: 16px;
}
+1あなた*加工用* example =) –