Posts by Little John • 21 points
2 posts
-
0
votes3
answers843
viewsA: Hide/edit the <select> appearance
An alternative to remove the "arrow" is to use the datalist with an input using the list attribute. <input list="browsers"> <datalist id="browsers"> <option value="Internet…
-
2
votes1
answer601
viewsA: problem with CSS with Primefaces
You can do the following test.: Add the ! Important ex.: .sem-bordas td{ border: none !important; padding: 5px !important; } To identify if there are any classes that overlap your added style. I…