Would you like the background-color to change when clicking on the radioButton?
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
background-color: black !important;
color: white !important;
}
.btn-primary {
color: black;
background-color: white;
width: 100%;
}
<div class="btn-group">
<div class="radiobuttonWidth">
<p-radioButton [somethink]="some"> </p-radioButton>
</div>
</div>
The hover effect is working, but not the active state.