Well, everybody knows that Twitter\'s Bootstrap is a great tool and makes a lot of things easier for those who, like me, doesn\'t know much about CSS yet. But, sometimes, it can
The one that has always worked for me is:
#myPWrap,#otherPWrap {
overflow:hidden;
}
#myP,#otherP {
margin-bottom: -99999px;
padding-bottom: 99999px;
}
You can also try to turn the wrap into a table and the #myP into a table col.
#myPWrap,#otherPWrap {
display: table;
}
#myP,#otherP {
display: table-cell;
}