什么是Bootstrap的'sr-only'的Semantic-UI等价物?

时间:2016-10-11 16:32:54

标签: semantic-ui screen-readers

我无法在Semantic-UI中找到向用户隐藏内容但向屏幕阅读器显示的实用程序类。

Bootstrap sr-only的语义ui等价是什么?

1 个答案:

答案 0 :(得分:4)

不确定是否存在于语义ui中。一个解决方法就是创建一个类似的类(从bootstrap' scaffolding.less#129复制):

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}