无法将div内部的p与margin 0 auto对齐

时间:2015-06-26 10:56:56

标签: css

我不知道发生了什么,但我无法将Map<String, Observable> 内的<p>div对齐 我无法理解什么是错的或我错过了什么,这是代码:

margin:0 auto;

这是CSS

<div class="test">
    <p>Text that has to be centered</p>
</div>

有了这个,文本在div的中心移动了一点点,但它没有完全居中

2 个答案:

答案 0 :(得分:0)

 .test p {
  text-align: center;
}

这就是你所需要的一切。

如果您将块元素居中,则需要margin:auto

答案 1 :(得分:0)

<div class="test">
        <p align="center">Text that has to be centered</p>
</div>

你想要什么,请清楚你的问题, 是否要对齐文本中心/左/右或只是更改

标记

的位置