I created a div containing a dropdown select box. I have set focus to the div by giving tabindex="0"
. When the div is focused, the border outline is not having rounded corners just as the dropdown box has. How do I change the css property of div when focused.
<div id="test" tabindex="0" class="blablabla">
Tried adding css properties by
div#test: focus {
background: white;
outline: none;
border-color: black;
}
Thanks for your help!!!