21 lines
452 B
HTML
21 lines
452 B
HTML
<style>
|
|
.searchBar{
|
|
text-overflow: ellipsis!important;
|
|
width: 280px;
|
|
background: #f5f6fa;
|
|
color: #828ba0;
|
|
font-size: 14px;
|
|
height: 50px;
|
|
box-sizing: border-box;
|
|
cursor: text;
|
|
}
|
|
|
|
[contenteditable]:focus{
|
|
outline: 0px solid transparent;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="searchBar" style="display:flex; justify-content:center; align-items:center;">
|
|
<div contentEditable="true" style="border: none">Search here</div>
|
|
</div> |