- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 Bootstrap 构建一个站点,我有一个垂直菜单,其中包含带有 FontAwesome 图标和文本的按钮。对于 XS 屏幕,我不希望菜单完全折叠,但我希望文本消失并且按钮缩小到图标的大小(不应消失)。我怎样才能做到这一点?
最佳答案
这对于 Bootstrap 3 来说既好又简单,Christina 和 cvrebert 已经提到过。
只需将 hidden-xs
类与按钮文本一起使用,如 fiddle ,以及下面的示例 html...
<button type="button" class="btn btn-default" aria-label="Left Align">
<label class="hidden-xs">text</label>
<span class="glyphicon glyphicon-align-left" aria-hidden="true"></span>
</button>
我已将按钮文本放在标签中,但您也可以轻松地使用 div、span 等。
哦,我没有费心使用 Font Awesome 字形,但这对它们也同样容易。
关于html - 响应式菜单 : how can I make button text but not icon disappear for xs screens?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26943043/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!