MDUI
首页
注册

希望MDUI自带页脚组件

学神之女
举头望涵涵,低头思第一。 https://www.dffzmxj.com
2018-06-15 20:00:46

MDUI不自带页脚,让我在页脚方面有些犯难,不知道该用什么网站的页脚,目前的解决方法:

  • 用对话框组件做个“关于”对话框。
  • 从其它基于Material Design设计的网站上扒下来页脚,如Google页脚的CSS:
footer {
      /*页脚整体外观*/
      line-height: 40px;
      background: #f2f2f2;
      border-top: 1px solid #e4e4e4;
      font-size: 10pt;
      color: #222;
    }
    footer text, footer a {
      /*页脚链接和文字*/
      margin-left: 30px;
      color: #666;
      display: inline-block;
      line-height: 40px;
      font-family: sans-serif;
      font-size: 10pt;
      margin-right: 30px;
      text-decoration: none;
    }
    footer>a:visited {
      color: #609;
    }