Доброго времени суток, кто может подсказать как можно убрать отступы?
<style>
.fs_stars > span.empt {
display: inline-block;
margin-left: 15px;
width: 62px;
height: 63px;
background: url(icons.png) -340px -187px no-repeat;
transform-origin: 0 0;
}
.good_info .fs_stars > span {
transform: scale(1.2);
}
.fs_stars > span {
transform: scale(1);
}
.fs_stars > span {
display: inline-block;
margin-left: 4px;
width: 62px;
height: 63px;
background: url(icons.png) -250px -190px no-repeat;
}
</style>
<html>
<body>
<div class="fs_stars">
<?php for ($i = 1; $i <= 5; $i++) { ?>
<?php if ($rating < $i) { ?>
<span class="empt"></span>
<?php } else { ?>
<span></span>
<?php } ?>
<?php } ?>
</div>
</body>
</html>
Как убрать отступы у звёзд?