zoukankan      html  css  js  c++  java
  • 按钮CSS样式

    CreateTime--2017年5月5日11:23:18
    Author:Marydon

    按钮CSS样式

    实现效果:

    <input type="button" onclick="" class="Button" style="margin-left:40px;" value="" onmouseover="javascript:this.className='ButtonOver'" 
      onmouseout
    ="javascript:this.className='Button'"/>
    /* 查询按钮style start */
    .Button {
        width: 80px;
        margin: 3px 1px 0 5px;
        padding: 0 10px;
        background-color: #16a0d3;
        border: none;
        display: inline-block;
        font-family: "Microsoft Yahei";
        font-size: 12px;
        cursor: pointer;
        height: 27px;
        line-height: 27px;
        color: #FFF;
        border-radius: 5px;
    }
    
    .ButtonOver {
        width: 80px;
        margin: 3px 1px 0 5px;
        padding: 0 10px;
        background-color: #117ea6;
        border: none;
        display: inline-block;
        font-family: "Microsoft Yahei";
        font-size: 12px;
        cursor: pointer;
        height: 27px;
        line-height: 27px;
        color: #FFF;
        border-radius: 5px;
    }    
    /* end 查询按钮style */
  • 相关阅读:
    tc: Linux HTTP Outgoing Traffic Shaping (Port 80 Traffic Shaping)(转)
    Linux TC的ifb原理以及ingress流控-转
    插件+组件+空间
    Q查询条件
    django中的分页标签
    QuerySet
    url
    view
    HttpReponse
    装饰器
  • 原文地址:https://www.cnblogs.com/Marydon20170307/p/6812118.html
Copyright © 2011-2022 走看看