+
80
-

input 下划线样式css怎么写?

input 下划线样式css怎么写?

网友回复

+
0
-
.input{
        transition: 0.5s;
        outline: none;
        border-bottom: 2px solid #b52710;
        text-align: center;
         border-top: none;
         border-left: none;
          border-right: none;
 }
 .input:focus {
            border-bottom: 3px solid #b52710;
  }

我知道答案,我要回答