html - Missing border-right in select on Firefox -
when put select div width , padding-left, options have no border on right. more, happend if select have width 118px , parent have 15px of padding left! have idea, going on?
my code:
<!doctype html> <html> <head lang="en"> </head> <body> <div style="width: 1000px; padding-left: 15px;"> <select style="width: 118px;"> <option>a</option> <option>b</option> <option>c</option> </select> </div> </body> </html>
and result:
here plunker: click
it happend on firefox on windows. tested on 40.0.2 version
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;
source: https://stackoverflow.com/a/11390432/4431269 source of problem: https://bugzilla.mozilla.org/show_bug.cgi?id=924068
and use of google !
edit: (source of problem, explained)
after reading bugreport, read possible has widows.size or resolution. problem can fix explained previous.
Comments
Post a Comment