以下代码在关闭按钮周围绘制一个较大的蓝色矩形边框。它只发生在Chrome中。 chrome是版本46.0.2490.86 我尝试过使用CSS样式但没有帮助。以下示例代码来自jQuery.com站点。我是HTML,CSS和jQuery领域的新手,所以请提供详细的答案,以帮助我解决问题。感谢。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
</html>
答案 0 :(得分:2)
使用此css代码:
.ui-button:focus { outline:none !important }