Konu
Radio Button Renk Değiştirme?
12-07-2021, 21:38:02
#6
megfors
buddy adlı üyeden alıntı:
mesajı görüntüle
<input type="radio" class="blue" >
diye bir buttonum var buna css ile erişip rengini değitirmek istiyorum fakat olmuyor.
border 1px solid blue deniyorum olmuyor color deniyorum olmuyor nasıl yapabilirim?
<
input
type
=
"radio"
name
=
"key"
value
=
"value"
/>
<
style
>
input
[
type
=
'radio'
]
:after
{
width
:
15px
;
height
:
15px
;
border-radius
:
15px
;
top
:
-2px
;
left
:
-1px
;
position
:
relative
;
background-color
:
#d1d3d1
;
content
:
''
;
display
:
inline-block
;
visibility
:
visible
;
border
:
2px
solid
white
;
}
input
[
type
=
'radio'
]
:checked:after
{
width
:
15px
;
height
:
15px
;
border-radius
:
15px
;
top
:
-2px
;
left
:
-1px
;
position
:
relative
;
background-color
:
#ffa500
;
content
:
''
;
display
:
inline-block
;
visibility
:
visible
;
border
:
2px
solid
white
;
}
}
</
style
>
BU İŞİNİ GÖRECEKTİR.