bootstrap中文字如何做到垂直居中呢?

2025-05-09 14:14:27
推荐回答(1个)
回答1:

需要自己设个style ,在div 中设 height:50px;line-height:50px试试.

直居中只能使用这个代码
.center-vertical {
position:relative;
top:50%;
transform:translateY(-50%);