Javascript-форум (https://javascript.ru/forum/)
-   Events/DOM/Window (https://javascript.ru/forum/events/)
-   -   Притопленный input (https://javascript.ru/forum/events/76631-pritoplennyjj-input.html)

Alehana 28.01.2019 10:00

Притопленный input
 
Как сделать так, чтобы input имел "притопленный вид", как здесь ?

https://yadi.sk/i/mONb8EuJCnHtAg

Nexus 28.01.2019 10:31

border или box-shadow
<input value="asd">
<style>
body{
	background:#EEE;
}
input{
	border-radius:3px;
	border:solid 2px #BBB;
	border-right:none;
	border-bottom:none;
	padding:5px 10px;
	color:#666;
}
</style>

Dilettante_Pro 28.01.2019 10:45

<style>
div {
   width:200px;
   height:50px;
   background-color:lightblue;
}
input {
   position:absolute;
   top:20px;
   left:20px;
   border-width:4px;
   border-color:lightskyblue lightskyblue lightblue lightblue;
}

</style>
<div>
  <input type="text">
</div>


Часовой пояс GMT +3, время: 19:58.