“Jak zrobić centrum obrazu w HTML” Kod odpowiedzi

Obraz środkowy 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

Jak wyrównać Centrum zdjęć 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

Jak zrobić centrum obrazu w HTML

<center>//The thing you want to center</center>
Wild Wolf

Odpowiedzi podobne do “Jak zrobić centrum obrazu w HTML”

Pytania podobne do “Jak zrobić centrum obrazu w HTML”

Więcej pokrewnych odpowiedzi na “Jak zrobić centrum obrazu w HTML” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu