如何在HTML中对齐<p>标记内的内容?

时间:2018-03-14 13:33:48

标签: html

我正在尝试在HTML页面的<p>标记内对齐一个段落,如下图所示。任何人都可以建议一种方法,因为中间内容有点移动到右侧。

Image

2 个答案:

答案 0 :(得分:1)

如果你真的不想使用任何CSS,那么sarkasronie是正确的,唯一的方法是使用白色图像。话虽这么说,您可以将CSS直接放在HTML文档中:

<p>
    Content outside of indentation...
    <span style="margin-left: 100px">Indented content</span>
    More outside content.
</p>

答案 1 :(得分:-1)

很容易你应该使用PRE标签代替paragragh来编写你想要的例子..

<pre>
               My Bonnie lies over the ocean.

         My Bonnie lies over the sea.

                My Bonnie lies over the ocean.
   
         Oh, bring back my Bonnie to me.
</pre>