JSFiddle - React, Tailwind, and code Playground
by Johan Muller
HTML
<input type="" class="lk__item__edit" value="Иванов Иван" />
<input type="" class="lk__item__edit" value="Петров Иван" />
CSS
* {
margin: 0;
padding: 0;
}
body {
margin: 50px;
}
.lk__item__edit {
display: inline-block;
margin-bottom: 10px;
position: relative;
box-sizing: border-box;
padding: 5px;
vertical-align: center;
text-decoration: none;
text-transform: uppercase;
font-size: 33px;
font-family: sans-serif;
border: 0; outline: 0;
background: #eee;
}
.lk__item__edit:hover {
color: #000;
background: #fff993;
}
JavaScript
$('.lk__item__edit').click(function () {
$(this).select();
});