尝试以下代码,上边框颜色和左边框颜色比下边框颜色和右边框颜色更暗。为什么会发生这种情况以及如何解决这个问题?
<html>
<input type="text">
</html>
<style>
input:focus{
outline:none;
box-shadow: none;
}
input{
border-color:orange;
box-shadow: none;
}
</style>
答案 0 :(得分:4)
有许多border-style
个值。尝试找一个适合你的方法,如User.get.then(function (payload) {
var usrname;
var usrobj = angular.fromJson(payload.data);
usrname = usrobj.name;
});
。我猜测solid
元素正在将其设置为input
。
答案 1 :(得分:-1)
尝试使用:
input{
border-color:orange;
box-shadow: none;
border-style: solid;
}
答案 2 :(得分:-1)
<html>
<input type="text">
</html>
<style>
input{
border:1px solid orange;
}
</style>
试试这个