input[type=submit] {
float: left;
font-size: 14px;
width: 30%;
height: auto;
text-align: center;
font-weight: normal;
line-height: 30px;
word-wrap: break-word;
margin-left: 34.998721%;
margin-top: 20px;
clear: both;
min-height: 0px;
font-family: helvetica;
color: rgb(255, 255, 255);
background-color: rgb(0, 154, 222);
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
因此,当我将此样式应用于<p>
标记时,它看起来是:
但是当我将它应用于提交按钮时,它会看起来有一些边框:
如何删除此边框?
答案 0 :(得分:2)
尝试将此属性添加到css规则:
border: none;
如果它不起作用,那么也添加:
outline: none;
答案 1 :(得分:0)
尝试为活动状态添加以下内容:
outline: none;
答案 2 :(得分:0)
由于按钮元素确实有自己的边框,因此必须禁用它才能使其不显示。
为实现此目的,您可以依赖here找到的边框样式选项。
因此,如果您想要禁用提交按钮的标准边框,只需将此行添加到CSS即可。
System.out.println("Enter commands U(up),D(down),L(left),R(right)");
String command = scan.next();
for (char directionCommand : command.toCharArray()){
move(directionCommand);
}
答案 3 :(得分:0)
border-style属性默认设置为none,似乎通过定义border-top-left-radius属性等边框样式交替显示为solid,因此您有不需要的边框。你可以简单地添加border-color属性并将其设置为透明,然后你应该得到你想要的结果