Change the position of Radio button in radio group in appery.io using css

320 views Asked by At

enter image description here

This is the image of the ui-radio that I got after implementing the default component provided in the appery.io web-based development platform.

How can I get the radio-button position on the top? As shown in the image below:

enter image description here

I have tried with:

.ui-radio .ui-btn.ui-radio { 
    position: absolute; 
    vertical-align: top; 
    margin: 0; 
    padding: 0; 
} 

Still it doesn't work.

1

There are 1 answers

0
John On
.ui-radio .ui-btn.ui-radio { 
    position: absolute; 
    top: 0;
    margin: 0; 
    padding: 0; 
} 

try this.