<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
* {
margin: 0;
padding: 0;
}
body {
padding: 10px;
}
ul {
list-style-type: none;
display: table;
margin: 0 auto;
}
ul>li {
float: left;
}
ul>li+li {
margin-left: 5px;
padding-left: 5px;
border-left: 1px solid #bbb;
}
</style>
</head>
<body>
<ul>
<li><img src="http://placehold.it/60x80" /></li>
<li><img src="http://placehold.it/60x80" /></li>
<li><img src="http://placehold.it/60x80" /></li>
<li><img src="http://placehold.it/60x80" /></li>
</ul>
</body>
</html>