7 回答

guoyou
TA貢獻28條經驗 獲得超30個贊
對于內容是文字的h1等標簽,可設height與line-height相等實現。比如:h1{ height:100px; line-height:100px;}

Joy_Sang
TA貢獻64條經驗 獲得超13個贊
第一種方法:
<div class="parent"> ?
<div class="child">Demo</div></div>
<style> ?.parent { ? ?display: table-cell; ? ?vertical-align: middle; ?}</style>
第二種方法:
<div class="parent"> ?
<div class="child">Demo</div></div>
<style> ?.parent { ? ?position: relative; ?} ?.child { ? ?position: absolute; ? ?top: 50%; ? ?transform: translateY(-50%); ?}</style>
- 7 回答
- 0 關注
- 2164 瀏覽
相關問題推薦
添加回答
舉報
0/150
提交
取消