国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁htmlvertical_alignCSS Property Value - 如何vertical-align: middle; 中心文本和圖像

CSS Property Value - 如何vertical-align: middle; 中心文本和圖像

我們想知道如何vertical-align: middle; 中心文本和圖像。


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#Outer1 {
  display: table-cell;
  height: 500px;
  width: 500px;
  border: 1px solid red;
  vertical-align: middle;
  text-align: center;
}
</style>
</head>
<body>
  <div id="Outer1" class="elementStatus">
    <div class="image">
      <!-- THIS IS THE IMAGE -->
      <img src="http://placehold.it/300x300" />
    </div>
    <div class="text">Statuts Text</div>
  </div>
</body>
</html>