欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

div中input垂直居中的方法

程序员文章站 2022-05-01 19:18:25
...

div中input垂直居中的方法

1. absolute+transfrom

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

<style>
    div{
		position: relative;
		height: 44px;
		background-color: #fe3c35;
	}
	input{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		height: 30px;
		background-color: #FFFFFF;
	}
</style>

2. absolute+margin

<div>
    <input type="text"/>
</div>
    
<style>
    div{
        position: relative;
        height: 44px;
        background-color: #fe3c35;
    }
    input{
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
        height: 30px;
        width: 80%;
        background-color: #FFFFFF;
    }
</style>
相关标签: html css