зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
534 B
HTML
26 строки
534 B
HTML
<!doctype html>
|
|
<html reftest-zoom="2">
|
|
<title>CSS Test Reference</title>
|
|
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
|
<style>
|
|
.image-container {
|
|
display: inline;
|
|
}
|
|
.content-container {
|
|
display: inline-block;
|
|
}
|
|
.flex-container {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
</style>
|
|
<div class="flex-container">
|
|
<div class="image-container">
|
|
<img src="200.png" width="100">
|
|
</div>
|
|
<div class="content-container">
|
|
Should see me right by the side of the image.
|
|
</div>
|
|
</div>
|
|
</html>
|