重写input样式

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <style media="screen">
      body,h1,footer,main,div{
        margin: 0;
        padding: 0;
      }
      body{
        display: flex;
        flex-flow:column;
        min-height: 100vh;
      }
      main{
        flex:1;
      }
      .input_control{
        width: 360px;
        margin: 20px auto;
      }
      input[type="text"],#btn1,#btn2{
        box-sizing: border-box;
        text-align:right;
        font-size: 1.4em;
        height: 2.7em;
        border-radius: 4px;
        border:1px solid #c8cccf;
        color: #6a6f77;
        -webkit-appearance: none;
        -moz-appearance: none;
        display: block;
        outline: 0;
        padding: 0 1em;
        text-decoration: none;
        width: 100%;
      }
      input[type="text"]:focus{
        border: 1px solid #ff7496;
      }

      footer{
        padding: 1em;
        padding: 1em calc(50% - 450px);
        background: #333;
        color:#fff;
        /* height: 100px; */
        box-sizing: border-box;
      }
    </style>
  </head>
  <body>

      <header>
        <h1>Site name</h1>
      </header>
      <main>
        <form action="" method="get">
            <div class="input_control">
                <input type="text" class="form_input" placeholder="Enter vendor key here"/>
            </div>
            <div class="input_control">
                <input type="text" class="form_input" placeholder="Enter room name here"/>
            </div>
            <div class="input_control">
                <input type="text" class="form_input" placeholder="Input key here if use encryption"/>
            </div>
            <div class="input_control">
                <a id="btn1"><b></b>Join</a>
            </div>
            <div class="input_control">
                <a id="btn2"><b></b>Video Options</a>
            </div>
        </form>

      </main>

    <footer>
      <p>@ 2015 No right reserved.</p>
      <p>Made with by an anoymous pastafarian</p>
    </footer>
  </body>
</html>

  摘自https://blog.csdn.net/qq_35718410/article/details/52149894

原文地址:https://www.cnblogs.com/ron123/p/9608887.html

时间: 2024-10-21 00:17:07

重写input样式的相关文章

常用的input样式美化。

在平常的网站开发中,css,html提供的关于<input type ="checkbox"/>或者<input type = "file"/>的样式不是我们想要的,那么现在我们来介绍一个小技巧,来设置成我们想要的样式. 第一个input框的美化,原理是用一个a标签包裹一个input标签,让input溢出,设置input标签的透明度为0,然后设置a标签就可以设置显示的样式了 DOM结构: <a href="javascript

input样式l修改和焦点事件转移

一 label <input type="file" id="male" style="display: none;"></input> <label for="male" style="background:url('http://fgg.natali.com.cn/resources/images/1.jpg');width:130px;height:130px;display: b

html5+jQuery Mobile开发移动端wap经验总结(二)- a / input样式重新定义

jQuery mobile中,很多样式都是写好的,虽然有主题,但是对于个性化的wap网站来说,还是很难驾驭的. 使用html5+jQuery Mobile做了几个页面之后,中间所遇到的问题,以及解决方法,现在加以总结,以便过后查阅. 问题: 1.a的颜色重新定义问题 2.input中button颜色问题. input输入框中,左边图标展示问题(文字缩进) 3.上文中的图标自定义问题[上文已经说明,通过ui-icon-XXX:after进行重新定义] 解决: 1-2.a / input的重新定义均

CSS分别设置Input样式(按input类型)

当你看到<input>这个html标签的时候,你会想到什么?一个文本框?一个按钮?一个单选框?一个复选框?……对,对,对,它们都对.也许你可能想不到,这个小小的input竟然可以创造出10个不同的东西,下面是个列表,看看,哪些是你没有想到的: <input type="text" /> 文本框 <input type="password" /> 密码框 <input type="submit" />

input样式去掉苹果手机的默认样式

/*<!---->去掉苹果短的样式*/ input[type="button"], input[type="submit"], input[type="reset"] { -webkit-appearance: none; } textarea { -webkit-appearance: none;} 原文地址:https://www.cnblogs.com/jialinG/p/9505046.html

input样式重置(outline:none)

我们在写表单的时候,经常需要自定义表单的样式,当然input输入框也不例外,那么如何能写出好看一点的输入框呢? 例如简单的三个空按钮: <input type="button" id="btn1"> <input type="button" id="btn2"> <input type="button" id="btn3"> 来个简单的样式: widt

android_重写button样式

这样的button样式应该源自IOS.假设安卓上实现,则须要使用android上面的layer-list来实现. 事实上layer-list有点像framlayout,作用就是覆盖. 先说一下实现原理:先画一个矩形.就是我们所示红色边框. 然后再画一个矩形将白色背景覆盖上面,设置android:left | right | top |bottom值.能够实现边框的大小. 然后在button里面设置background属性就好了,以下附上源代码. 由于三个button形状都不一样,所以要设置三个l

jQuery .css color 重写 :hover样式没了

$("#quickSqlDiv a").css({"color":"red"}); $("#course a").css({"color":"#000"}); 使用之后原本的 a标签hover不起作用了 div#navsecond div ul li a:hover { text-decoration: underline; color: #ff0000 !important; back

js 重写 bootstrap 样式 alert/confirm 消息窗口

相信很多人都受够了 alert.confirm 的样子,最近正在用 bootstrap 做项目,顺便封装了一个 bootstrap 样式的消息框. 实现起来很简单,bootstrap 本身就自带了 modal 模态框,样子还不错 :)就把它封装一下用吧. 无码无真相,少说多做,上代码. 项目是Asp.net Mvc架构的,方便全局调用,我直接在全局 Layout 页面加上以下HTML: <!-- system modal start --> <div id="ycf-alert