Centering a block of text inside a div is not working properly

Hi there:

I'm centering a block of text inside a div, it is working but I note that the result is not exactly centered, instead it is offset vertically by 2px aprox.

the code is this:

<body>
<div class="outer">
  <div class="inner"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>

css inline-block

Following code behave differently in chrome version 27 and 29 in chrome 27 its not getting wrap but in chrome 29 + its wrapping

code available @ http://jsfiddle.net/B8cvz/1/

just i wanted to problem is in CSS or in browser..

html
-------

<div class="superparent">
<div class="parentdiv">
    <div class="child">test  </div>
    <div class="child">test  </div>
    <div class="child">test  </div>
    <div class="child">test  </div>    
    <div class="child">test  </div>
</div>
</div>

css
----

.superparent
{
  width: 200px;

Syndicate content