导读 | Foundation 用于开发响应式的 HTML, CSS and JavaScript 框架。Foundation 是一个易用、强大而且灵活的框架,用于构建基于任何设备上的 Web 应用。 |
Foundation 提供了 6 种按钮样式。 .button 类创建了一个蓝色的按钮并附有内边距。不同颜色按钮类为: .secondary, .success, .info, .warning 或 .alert:
<button type="button" class="button">Default</button>
<button type="button" class="button secondary">Secondary</button>
<button type="button" class="button success">Success</button>
<button type="button" class="button info">Info</button>
<button type="button" class="button warning">Warning</button>
<button type="button" class="button alert">Alert</button>
按钮类可以使用在 <a>
, <button>
, 或 <input>
元素:
<a href="#" class="button info" role="button">Link Button</a>
<button type="button" class="button info">Button</button>
<input type="button" class="button info" value="Input Button">
<input type="submit" class="button info" value="Submit Button">
注意:为什么将 a 标签的 href 设置为 # ?
当我们不希望链接点击跳转并得到 "404" 页面时,我们可以将 a 标签的 href 设置为 #。
我们可以使用 .large, .small 或 .tiny 类来设置按钮大小:
<button type="button" class="button large">Large</button>
<button type="button" class="button">Default</button>
<button type="button" class="button small">Small</button>
<button type="button" class="button tiny">Tiny</button>
可以使用 .radius 和 .round 类来设置圆角按钮:
<button type="button" class="button">Default Button</button>
<button type="button" class="button radius">Radius Button</button>
<button type="button" class="button round">Round Button</button>
可以使用 .expand 类来设置按钮的宽度为 100%:
<button type="button" class="button">Default Button</button>
<button type="button" class="button expand">Expanded Button</button>
可以使用 .disabled 类来设置按钮不可点击:
<button type="button" class="button">Default Button</button>
<button type="button" class="button disabled">Disabled Button</button>
原文来自:https://www.runoob.com/foundation/foundation-buttons.html
本文地址:https://www.linuxprobe.com/the-foundation-button.html编辑:王浩,审核员:逄增宝
Linux命令大全:https://www.linuxcool.com/
Linux系统大全:https://www.linuxdown.com/
红帽认证RHCE考试心得:https://www.rhce.net/