ホームページ >ウェブフロントエンド >CSSチュートリアル >画像を垂直方向の中央に配置する方法
タイプ1、センタリング効果
24d1e2eac3566597a260e618e7c94f54
00bac79f08837af9828fe881b8052e60センタリング効果94b3e26ee717c64999d7867364b1b4a3
94b3e26ee717c64999d7867364b1b4a3
/*第1种,垂直居中效果*/ .box{ width: 200px;height: 200px;border: 1px solid #ccc; position: relative; } .center{ width: 100px;height: 100px;background: gray; margin: auto;position: absolute;top: 0;left: 0;bottom: 0;right: 0; }
タイプ2 写真は中心
41c69c9e89bd3fbfbb1ab2a34387bbfe
430ec9137e7af1a16f2aa1b54b8d4062
aeac9416d0a595ba39a45313a118d925427924e0bc1c500e0479e017d951eadf
94b3e26ee717c64999d7867364b1b4a3
/*第2种 图片垂直居中*/ /* span是辅助元素 vertical-align这个属性的特点,它是相对兄弟级行高(line-height)来定位*/ .box2{ width: 350px;height: 350px;border: 1px solid #F22727; text-align: center; } .center2{ vertical-align: middle;} .block{ line-height: 350px;}/*跟父级一样高*/
タイプ 3、センタリング効果のために、親要素は display: table; 子要素 display: table-cell を使用します
7c2850d2697cabe39bc6140f38ba3788
0f78a246bb29fbaa578eae1bbae945c702f9f8019940b8430b7fd47112ca08a654bdf357c58b8a65c66d7c19c8e4d114
94b3e26ee717c64999d7867364b1b4a3
/*第3种,居中效果*/ .box3{ width: 350px;height: 350px;border: 1px solid #F22727;display: table;text-align: center; } .center3{ display: table-cell;vertical-align: middle; }
タイプ 4、センタリング効果
00c8402ef2832bd3c2af12e3089f8477
1c1f99637a1bfd5525733d13d0c33cbf
94b3e26ee717c64999d7867364b1b4a3
/*第4种,居中效果 根据父元素来计算*/ .box4{ width:300px;height: 300px;border: 1px solid #F22727; } .center4{ width: 200px;height: 200px;position: relative;left: 16%;top: 19%; }
以上が画像を垂直方向の中央に配置する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。