53
Views
6
Comments
Solved
Round the edge of the dropdown list.
Question

Hey guys! 

I'm developing a mobile application and I'm having a problem styling some dropdowns. 

I would like to make the edges of the dropdown list rounded and also reduce the width of the list to be compatible with the size of the dropdown. 

I am very grateful to anyone who can help. 

Thank you very much. 

2023-02-19 05-11-08
Faais
Solution

Hi Luiz,

<option> tag in HTML does not support the border-radius property. The styling options for <option> elements are limited due to browser restrictions. 



Thanks!

2026-04-23 05-29-20
Prince Kumar
Solution

Hi @Luiz Lima 

Once you drag and drop the dropdown, the CSS is automatically applied to give it a rounded edge. No further action is required. 

See the below images.








Or else you can check out this link as well.

how to customize the dropdown widget

Or try to add this class

.rounded-dropdown { 

border-radius: 10px; } 

values you can change accordingly.

And if still you haven't found your answer in it then please provide further details or, if possible, share the OML for reference. 

Regards

Prince Kumar

2025-04-17 05-42-16
Ajit Kurane
Solution

Hi,

Try below class and let us know,

.rounded-dropdown {

    border-radius: 8px; /* Adjust the value to control the roundness of the edges */

}

Thanks.


2023-11-20 06-53-17
Neha Rathore
Solution
2023-02-19 05-11-08
Faais
Solution

Hi Luiz,

<option> tag in HTML does not support the border-radius property. The styling options for <option> elements are limited due to browser restrictions. 



Thanks!

2026-04-23 05-29-20
Prince Kumar
Solution

Hi @Luiz Lima 

Once you drag and drop the dropdown, the CSS is automatically applied to give it a rounded edge. No further action is required. 

See the below images.








Or else you can check out this link as well.

how to customize the dropdown widget

Or try to add this class

.rounded-dropdown { 

border-radius: 10px; } 

values you can change accordingly.

And if still you haven't found your answer in it then please provide further details or, if possible, share the OML for reference. 

Regards

Prince Kumar

2025-04-17 05-42-16
Ajit Kurane
Solution

Hi,

Try below class and let us know,

.rounded-dropdown {

    border-radius: 8px; /* Adjust the value to control the roundness of the edges */

}

Thanks.


2021-09-06 15-09-53
Dorine Boudry
 
MVP

Hi @Luiz Lima ,

when you use the default dropdown content (text only) it uses options that are styled by the browser.

you can switch to Options Content = Custom, and then your DOM will contain a div with class dropdown-list, that you can style as you like.

Dorine

2023-11-20 06-53-17
Neha Rathore
Solution
2023-10-12 01-08-03
Luiz Lima

Hey guys.


Sorry for my question, I really didn't pay attention to the difference between the list on the cell phone and the view on the computer.

I really thought that the app would behave on cell phones the same way it behaves in the browser.


Anyway, thanks to everyone who responded.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.