zoukankan      html  css  js  c++  java
  • 漂亮的CSS3提交意见输入框样式

    做了个输入框样式,如图:

    CSS代码如下:

    <喎�"http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHByZSBjbGFzcz0="java;">#button { cursor:pointer; 30%; margin:5px; padding:8px; border-radius:4px 4px 4px 4px; font-size:14px; font-weight:bold; } input{ transition:all 0.30s ease-in-out; -webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; border:#364f86 1px solid; border-radius:3px; outline:none; } input:focus{ box-shadow:0 0 5px rgba(81, 203, 238, 1); -webkit-box-shadow:0 0 5px rgba(81, 203, 238, 1); -moz-box-shadow:0 0 5px rgba(81, 203, 238, 1); } textarea{ transition:all 0.30s ease-in-out; -webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; border:#364f86 1px solid; border-radius:3px; outline:none; } textarea:focus{ box-shadow:0 0 5px rgba(81, 203, 238, 1); -webkit-box-shadow:0 0 5px rgba(81, 203, 238, 1); -moz-box-shadow:0 0 5px rgba(81, 203, 238, 1); } table代码如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    <table>              
                    <tbody><tr>
                        <td>用户名</td>
                        <td><input name="username" type="text" id="username" placeholder="用户名" style="height:25px">*</td>
                    </tr>
                                   
                    <tr>
                        <td>联系方式</td>
                        <td><input name="contact" type="text" id="contact" placeholder="电话或邮件地址" style="height:25px">*</td>
                    </tr>
     
                    <tr>
                        <td>意见及建议</td>
                        <td><textarea name="comment" id="comment" rows="9" cols="112">0</textarea></td>
                    </tr>              
                     
                    <tr>
                    <td colspan="2" align="center"><input type="submit" id="button" value="提交"></td>
                    </tr>
    </tbody></table>
  • 相关阅读:
    MVVM CopyValuesTo接触属性上下级关联
    怎样控制WPF GroupBox.HeaderTemplate中的控件
    wpf动态创建DataGrid
    mvvm 绑定textbox焦点丢失问题
    C# 导出CSV文件
    使用C#选择文件夹、打开文件夹、选择文件或者如何使用C#选择文件夹
    EF 强制从数据库刷新集合
    WPF及Silverlight中将DataGrid数据导出
    VS 2005中winForm开发(C#)—图片上传到数据库与显示(sql server 2005)
    数据导出为csv文件时 数值型数据为科学计数法 时间被截取的解决方法
  • 原文地址:https://www.cnblogs.com/ranzige/p/4096771.html
Copyright © 2011-2022 走看看