我正在重新设计现有网站的样式,并遇到以下奇怪的错误。 选择框具有重叠的空白区域,其中包含选项值。 我正在附上一张图片。 Image of select box with white space
我正在使用bootstrap来做新的样式。 代码示例如下:
Intent receivedIntent = getIntent();
String receivedAction = receivedIntent.getAction();
String receivedType = receivedIntent.getType();
//make sure it's an action and type we can handle
if(receivedAction.equals(Intent.ACTION_SEND)){
//content is being shared
}
else if (receivedAction.equals(Intent.ACTION_MAIN)){
}
String receivedText = receivedIntent.getStringExtra(Intent.EXTRA_TEXT);
if (receivedText != null) {
et1.setText(receivedText);
}
我非常感谢您对解决此问题的任何想法。
答案 0 :(得分:0)
您的快照显示为该网站有一些插件或代码来修改您的选择框,因为选择框不会显示在您的快照中。如果你查看你的代码(在客户端,使用浏览器的inspect元素功能),你会得到一些span / div,它被重叠或在select元素上产生白色背景/空白区域。