zoukankan      html  css  js  c++  java
  • html css input定位 文本框阴影 灰色不可编辑

     1 <!DOCTYPE html>
     2 <html lang="en">
     3 <head>
     4   <meta charset="UTF-8">
     5   <meta name="viewport" content="width=device-width, initial-scale=1.0">
     6   <meta http-equiv="X-UA-Compatible" content="ie=edge">
     7   <title>Document</title>
     8   <style>
     9    .InfoLabel{
    10     position:"absolute";
    11     padding-left: 8em;
    12 
    13    }
    14     .Info{
    15       height: 30px;
    16       color: #c0c0c0;
    17       font-size: 14px;
    18       box-shadow: 6px 6px 5px 2px lightblue;outline: none;border:1px solid #c0c0c0;
    19     }
    20   </style>
    21 </head>
    22 <body>
    23   <label class="InfoLabel"></label>  <input class="Info" type="text"  readonly=true  value="重量:2218">
    24   <label class="InfoLabel"></label>  <input class="Info" type="text"  readonly=true value="总货值:10128">
    25   <label class="InfoLabel"></label>  <input class="Info" type="text"  readonly=true value="总价值:10128">
    26   <label class="InfoLabel"></label>  <input class="Info" type="text"  readonly=true value="计价类型:物料">
    27 </body>
    28 </html>
  • 相关阅读:
    SpringBoot打jar包以及打成war包 (springboot2.0)
    学习软件开发的心得
    SQA计划
    继续冲吧
    别跑了,看看脚下有木有money
    springIOC的那些事
    ssm
    scrum 第二次冲刺
    云医院
    团队项目开发总结
  • 原文地址:https://www.cnblogs.com/LiuFengH/p/9603277.html
Copyright © 2011-2022 走看看