Bunu css ile yapabilirsin php ile alakası yok.

Örnek css kodu.
.resim {
	width:500px;
	height:300px;
	background-color:#000;
	position:relative;
	overflow:hidden;
}
.facebook {
	width:90px;
	height:10px;
	background-color:#fff;
	position:absolute;
	left:5px;
	top:5px;
}
.twitter {
	width:90px;
	height:10px;
	background-color:#fff;
	position:absolute;
	left:100px;
	top:5px;
}
.yorum {
	width:90px;
	height:10px;
	background-color:#fff;
	position:absolute;
	right:5px;
	top:5px;
}
örnek html kodu

<div class="resim">
    <div class="facebook"></div>
    <div class="twitter"></div>
    <div class="yorum"></div>
</div>