如何将背景颜色添加到居中文本的宽度?

发布于 2024-11-07 12:22:01 字数 337 浏览 0 评论 0原文

我想这很简单,但我一直无法弄清楚如何做到这一点。我想将一些文本放在 div 中居中,然后将背景颜色应用于文本的宽度,而不必输入 div 的宽度(以便背景颜色自动为文本的宽度

)我的 CSS 看起来像这样:

.heading {
text-align: center;
background-color:red;
}

它使文本居中,但使页面上整行的背景变为红色。

当我添加 display:inline 时,背景只是文本的宽度,但文本不再居中。

有人可以帮忙解决这个问题吗?

谢谢,

尼克

I imagine this is straight forward, but I haven't been able to work out how to do it. I would like to center some text in a div, and then apply a background color to just the width of the text, without having to enter a width for the div (so that the background color is automatically the width of the text)

At the moment my CSS looks like this:

.heading {
text-align: center;
background-color:red;
}

which centers the text, but makes the background of the entire line on the page red.

When I add display:inline the background is just the width of the text, but the text is no longer centred.

Could someone help with this?

Thanks,

Nick

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

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

发布评论

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

评论(2

入画浅相思 2024-11-14 12:22:02

将文本包裹在 .heading 内,然后:

.heading {
  text-align: center;
}

.heading span {
  background-color:red;
}

Wrap your text inside .heading in a span and then:

.heading {
  text-align: center;
}

.heading span {
  background-color:red;
}
天荒地未老 2024-11-14 12:22:02

仅使用一个 DIV 无法实现这一目标。您可能需要将文本包含在 SPAN 中并为其应用背景颜色。例如 HTML 代码将如下所示:

<div class="heading"><span>Sample Text</span></div>

CSS 代码将如下所示:

DIV.heading { text-align: center; }
DIV.heading SPAN { background-color: red; }

You won't be able to achieve this with one DIV only. You may need to enclose text into SPAN and apply background color to it. For example HTML code will look like:

<div class="heading"><span>Sample Text</span></div>

And CSS code will look like:

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