“HTML Picture Center” Ответ

HTML Picture Center

html:
<img src="paris.jpg" alt="Paris" class="center">
css:
<style>
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
<style>
Strange Stork

HTML -центральное изображение

<div class="verticalhorizontal">
    <img src="image.jpg" alt="centered image" />
</div>

<style>
.verticalhorizontal {
    display: table-cell;
    height: 300px;
    text-align: center;
    width: 300px;
    vertical-align: middle;
}
</style>
Xabos

изображение выравнивание центра

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
Doubtful Dog

Как выровнять центр фотографий HTML

<!-- HTML here not CSS! -->
<!DOCTYPE html>
<head><!-- Title goes here --></head>
<body>
  <center><!-- Center's anythings -->
    <img src""><!-- Put image name (e.g example.jpeg) -->
  </center>
</body>
</html>
Outstanding Oystercatcher

Ответы похожие на “HTML Picture Center”

Вопросы похожие на “HTML Picture Center”

Больше похожих ответов на “HTML Picture Center” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования