J
J
Jedi2018-04-15 01:34:51
Bootstrap
Jedi, 2018-04-15 01:34:51

How to do this for Bootstrap input?

5ad281f66cf61926940349.png
How to add Edit password directly to input ?
Thank you!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
A person from Kazakhstan, 2018-04-15
@PHPjedi

<p class="pass"> 
   <input type="password" placeholder="password" />
   <span><a href="#">Edit</a></span>
</p>

*{
  margin:0;
}
p.pass{
  border:1px solid #eee;
  display:inline-block;
  padding:0 5px 0;
}
input[type="password"]{
  border:none;
  outline:none;
}

result :5ad2b622451a9516476899.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question