border:0;和border:none;的区别
推荐于2016-05-25
展开全部
一、border:none
border-style的简写
在chrome审查元素看到以下结果
element.style {
border: none;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
border-width: initial;
border-color: initial;
}
在firefox中用firebug查看元素会看到以下结果:
element.style {
border: medium none;
}
注意这个medium值
二、border:0
border-width的简写
在chrome审查元素看到以下结果
element.style {
border: 0;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-style: initial;
border-color: initial;
}
在firefox中用firebug查看元素会看到以下结果:
element.style {
border: 0 none;
}
border-style的简写
在chrome审查元素看到以下结果
element.style {
border: none;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
border-width: initial;
border-color: initial;
}
在firefox中用firebug查看元素会看到以下结果:
element.style {
border: medium none;
}
注意这个medium值
二、border:0
border-width的简写
在chrome审查元素看到以下结果
element.style {
border: 0;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-style: initial;
border-color: initial;
}
在firefox中用firebug查看元素会看到以下结果:
element.style {
border: 0 none;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询