如何让input点击没虚线框
来源:网络 作者:佚名 点击:
次时间:2017-07-19 00:32
[摘要] style type=text/css !-- .login_button { background-image: url(/images/login_button.jpg); background-repeat: no-repeat; background-position: left top; margin: 0px; padding: 0px; height: 46px; width: 48px; border: none; background-color: #FFCC00; } --
<style type="text/css">
<!--
.login_button {
background-image: url(/images/login_button.jpg);
background-repeat: no-repeat;
background-position: left top;
margin: 0px;
padding: 0px;
height: 46px;
width: 48px;
border: none;
background-color: #FFCC00;
}
-->
</style>
</head>
<body>
<input type="submit" class="login_button" tabindex="4" value=" 确定" width="48px" height="46px" border="0px" />
</body>
解决方法:
,< input > 内加 onFocus="this.blur()"就行了
|
------分隔线----------------------------