.sr-only {
position: absolute;
left: -10000px;
width: 1px;
height: 1px;
top: auto;
overflow: hidden;
}
display: none & visibility: hidden
对screen reader 也有效,所以不能用这俩
width:0 heigh:0
这个元素会从文档流中消失,screen reader 会忽视掉,也不能用
但是可把影响降到最小,设置为 width:1px; height:1px;