App下載
首頁htmlh1_6HTML Element Style - 如何中心2個不同的圖像...

HTML Element Style - 如何中心2個不同的圖像...

我們想知道如何中心2個不同的圖像。...

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.outf {
  border-color: #3377bb;
  border-style: double;
  border-width: 2px;
  width: 750px;
  padding: 8px;
  float: left;
}

.right {
  text-align: right;
  float: right;
}

.left {
  text-align: left;
  float: left;
}
</style>
</head>
<body>
  <div class="outf">
    <h3 class="left">Text</h3>
    <h3 class="right">more text</h3>

    <h3 class="right">some more text</h3>

  </div>
</body>
</html>