look at this image folks, instead of using overflow:hidden there is still some text appearing i want to hide it too how can i do this ?
(i don’t want to reduce or increase the height, the height should be as it is)

look at the area highlighted in Red, this is what irritating me.
how can i fix this ?
this is the CSS of the content,
height:114px;
overflow:hidden;
padding:12px 12px 0;
padding-bottom:12px;
font-size:11px;
line-height:16px;
background-color:#e1f6fa;

here you go, of i fix it using css/html for the third content box , the fifth content box won’t get fixed.
there are a lot other boxes having different content inside them so it is useless to change height, line-height proeprty. can it be done by php ? if yes then how ?
Make sure the
heightproperty is a multiple of theline-heightvalue. That will fix this. For ex: for aline-heightof16px, you can have aheightof96px,112pxetc. A height of114pxleaves2 pixelsat the bottom which will inevitably display the leading 1~2 pixels (depending on font used) of the next line of text.