<html>
<head>
<style>
ul{
list-style-type:none;
font-size:0px;
letter-spacing:10px;
}
li{
display:inline-block;
}
</style>
</head>
<body>
<ul>
<li><img src="photo.jpg"></li>
<li><img src="photo.jpg"></li>
<li><img src="photo.jpg"></li>
<li><img src="photo.jpg"></li>
<li><img src="photo.jpg"></li>
</ul>
</body>
</html>
It's different in Firefox, Chrome and IE. In Firefox when I use font-size:0px and letter-spacing:10px, the <li> elements have the letter-spacing 10px but in Chrome and IE it doesn't work, why is that?