Skip to content

Instantly share code, notes, and snippets.

@suitougreentea
Created April 2, 2014 10:01
Show Gist options
  • Save suitougreentea/9931302 to your computer and use it in GitHub Desktop.
Save suitougreentea/9931302 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
.row {
width: 100%;
display: table;
table-layout: fixed;
}
.cell-left {
display: table-cell;
}
.cell-center {
display: table-cell;
text-align: center;
}
.cell-right {
display: table-cell;
text-align: right;
}
</style>
</head>
<body>
<div class="row">
<div class="cell-left"></div>
<div class="cell-center"><img src="dummy.jpg" /></div>
<div class="cell-right"><img src="dummy.jpg" /></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment