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

App下載
首頁htmltext_alignCSS Property Value - 如何text-align: center;

CSS Property Value - 如何text-align: center;

我們想知道如何text-align: center;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
nav div {
  width: 33.3%;
  float: left;
}

#one {
  background: yellow;
}

#two {
  text-align: center;
  background: lime;
}

#three {
  text-align: right;
  background: aqua;
}
</style>
</head>
<body>
  <nav>
    <div id="one">
      <button>One</button>
    </div>
    <div id="two">
      <button>Two</button>
    </div>
    <div id="three">
      <button>Three</button>
    </div>
  </nav>
</body>
</html>