段落“

”未应用填充

发布于 2024-08-24 18:15:35 字数 510 浏览 8 评论 0原文

以下三段代码的行为完全相同:

<p {padding: 0 15 0 15}>  A paragraph of text here...  </p>

<p> A paragraph of text here... </p>

<p style="padding: 0 15 0 15">  A paragraph of text here...  </p>

如何使段落两边缩进? (我尝试了 15px 而不是 15(编辑 - 但仅在前两个),我还尝试用逗号分隔数字,就像我在 Google 上找到的示例一样。)

上面的代码位于正文中的 div 中,没有涉及其他div或table等。

div 已定义:

<div style="background-color: white; color: black; overflow:auto">

感谢您的帮助。

The following three pieces of code behave exactly the same:

<p {padding: 0 15 0 15}>  A paragraph of text here...  </p>

<p> A paragraph of text here... </p>

<p style="padding: 0 15 0 15">  A paragraph of text here...  </p>

How do I get the paragraph indented on both sides? (I tried 15px instead of 15 (EDIT - but only on the first two), I also tried separating the numbers with commas, like an example I found on Google.)

The above code is in a div which is in the body, no other divs or tables, etc. are involved.

The div is defined:

<div style="background-color: white; color: black; overflow:auto">

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

饭团 2024-08-31 18:15:35

15? 15 什么?您是否考虑过使用单位

<p style="padding: 0 15px">foo</p>

15? 15 what? Have you considered using units?

<p style="padding: 0 15px">foo</p>
慵挽 2024-08-31 18:15:35

更改:

<p {padding: 0 15 0 15}>  A paragraph of text here...  </p> 

至:

<p style="padding: 0px 15px 0px 15px">  A paragraph of text here...  </p> 

Change:

<p {padding: 0 15 0 15}>  A paragraph of text here...  </p> 

to:

<p style="padding: 0px 15px 0px 15px">  A paragraph of text here...  </p> 
紧拥背影 2024-08-31 18:15:35

也许您之前有这样的行:

p { display: inline }

This CSS disable the use of padding。

Maybe you have a previous line like this:

p { display: inline }

This CSS disable the use of padding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文